You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
948 B
Makefile
47 lines
948 B
Makefile
1 year ago
|
#
|
||
|
# Copyright (C) 2008-2015 The LuCI Team <luci@lists.subsignal.org>
|
||
|
#
|
||
|
# 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
|
||
|
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
|
||
|
|
||
|
PKG_LICENSE:=MIT
|
||
|
|
||
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)
|
||
|
|
||
|
include $(INCLUDE_DIR)/host-build.mk
|
||
|
|
||
|
define Package/luci-base/conffiles
|
||
|
/etc/luci-uploads
|
||
|
/etc/config/luci
|
||
|
/etc/config/ucitrack
|
||
|
endef
|
||
|
|
||
|
include ../../luci.mk
|
||
|
|
||
|
define Host/Configure
|
||
|
endef
|
||
|
|
||
|
define Host/Compile
|
||
|
$(MAKE) -C src/ clean po2lmo jsmin
|
||
|
endef
|
||
|
|
||
|
define Host/Install
|
||
|
$(INSTALL_DIR) $(1)/bin
|
||
|
$(INSTALL_BIN) src/po2lmo $(1)/bin/po2lmo
|
||
|
$(INSTALL_BIN) src/jsmin $(1)/bin/jsmin
|
||
|
endef
|
||
|
|
||
|
$(eval $(call HostBuild))
|
||
|
|
||
|
# call BuildPackage - OpenWrt buildroot signature
|