2013-01-31 09:23:27 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-core
|
2014-01-04 08:19:13 +00:00
|
|
|
PKG_VERSION:=1
|
2014-02-25 10:30:07 +00:00
|
|
|
PKG_RELEASE:=$(GLUON_VERSION).$(GLUON_SITE_CODE)-$(GLUON_RELEASE).$(GLUON_CONFIG_VERSION)
|
2013-01-31 09:23:27 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/gluon-core
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
|
|
|
TITLE:=Base files of Gluon
|
2013-09-30 16:46:24 +00:00
|
|
|
DEPENDS:=+odhcp6c
|
2013-01-31 09:23:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
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/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-core/install
|
|
|
|
$(CP) ./files/* $(1)/
|
2013-09-28 16:40:37 +00:00
|
|
|
$(GLUON_GENERATE) ./generate/* $(1)/
|
2014-01-20 01:31:24 +00:00
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/lib/gluon
|
2014-02-25 10:30:07 +00:00
|
|
|
echo "$(GLUON_VERSION)" > $(1)/lib/gluon/version
|
2014-01-31 14:25:49 +00:00
|
|
|
echo "$(GLUON_RELEASE)" > $(1)/lib/gluon/release
|
2013-01-31 09:23:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gluon-core))
|