2013-01-31 09:23:27 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-core
|
2017-01-18 16:21:43 +00:00
|
|
|
|
|
|
|
GLUON_VERSION = $(shell git describe --always --dirty=+ 2>/dev/null || echo unknown)
|
|
|
|
PKG_VERSION:=$(if $(DUMP),x,$(GLUON_VERSION))
|
|
|
|
|
2013-01-31 09:23:27 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2016-10-08 22:18:45 +00:00
|
|
|
include ../gluon.mk
|
2013-01-31 09:23:27 +00:00
|
|
|
|
2016-07-10 18:08:44 +00:00
|
|
|
|
2013-01-31 09:23:27 +00:00
|
|
|
define Package/gluon-core
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
|
|
|
TITLE:=Base files of Gluon
|
2017-06-21 20:11:34 +00:00
|
|
|
DEPENDS:= \
|
|
|
|
+gluon-site +libgluonutil +lua-platform-info +lua-simple-uci +lua-hash +luci-lib-jsonc +luci-lib-nixio \
|
|
|
|
+vxlan +odhcp6c +firewall +pretty-hostname
|
2015-03-18 19:24:57 +00:00
|
|
|
endef
|
|
|
|
|
2013-01-31 09:23:27 +00:00
|
|
|
define Package/gluon-core/description
|
2013-01-31 10:36:18 +00:00
|
|
|
Gluon community wifi mesh firmware framework: core
|
2013-01-31 09:23:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2016-07-10 18:08:44 +00:00
|
|
|
$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
|
2013-01-31 09:23:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-core/install
|
|
|
|
$(CP) ./files/* $(1)/
|
2016-07-10 18:08:44 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
|
2014-01-20 01:31:24 +00:00
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/lib/gluon
|
2017-01-18 16:21:43 +00:00
|
|
|
echo '$(GLUON_VERSION)' > $(1)/lib/gluon/gluon-version
|
2013-01-31 09:23:27 +00:00
|
|
|
endef
|
|
|
|
|
2014-07-05 00:48:56 +00:00
|
|
|
define Package/gluon-core/postinst
|
|
|
|
#!/bin/sh
|
|
|
|
$(call GluonCheckSite,check_site.lua)
|
|
|
|
endef
|
|
|
|
|
2013-01-31 09:23:27 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-core))
|