2014-12-03 14:17:05 +00:00
|
|
|
#
|
2015-01-09 15:35:23 +00:00
|
|
|
# Copyright (C) 2008-2015 The LuCI Team <luci@lists.subsignal.org>
|
2014-12-03 14:17:05 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=luci-base
|
|
|
|
|
|
|
|
LUCI_TYPE:=mod
|
|
|
|
LUCI_BASENAME:=base
|
|
|
|
|
|
|
|
LUCI_TITLE:=LuCI core libraries
|
2019-07-06 12:31:15 +00:00
|
|
|
LUCI_DEPENDS:=+lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua +luci-lib-jsonc +liblucihttp-lua +luci-lib-base +rpcd-mod-file +rpcd-mod-luci +cgi-io
|
2014-12-03 14:17:05 +00:00
|
|
|
|
2018-06-27 14:14:12 +00:00
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
|
2019-12-26 18:18:18 +00:00
|
|
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)
|
|
|
|
|
2014-12-03 14:17:05 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2015-12-02 02:36:30 +00:00
|
|
|
define Package/luci-base/conffiles
|
|
|
|
/etc/luci-uploads
|
2016-12-10 09:20:01 +00:00
|
|
|
/etc/config/luci
|
2017-07-14 08:56:41 +00:00
|
|
|
/etc/config/ucitrack
|
2015-12-02 02:36:30 +00:00
|
|
|
endef
|
|
|
|
|
2014-12-03 14:17:05 +00:00
|
|
|
include ../../luci.mk
|
|
|
|
|
|
|
|
define Host/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Compile
|
2018-11-21 17:30:14 +00:00
|
|
|
$(MAKE) -C src/ clean po2lmo jsmin
|
2014-12-03 14:17:05 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Install
|
2016-10-09 20:43:57 +00:00
|
|
|
$(INSTALL_DIR) $(1)/bin
|
|
|
|
$(INSTALL_BIN) src/po2lmo $(1)/bin/po2lmo
|
2018-11-21 17:30:14 +00:00
|
|
|
$(INSTALL_BIN) src/jsmin $(1)/bin/jsmin
|
2014-12-03 14:17:05 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|
|
|
|
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|