2013-09-28 19:24:13 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-next-node
|
2014-07-05 00:48:56 +00:00
|
|
|
PKG_VERSION:=3
|
2013-09-28 19:24:13 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2014-07-05 00:48:56 +00:00
|
|
|
include $(GLUONDIR)/include/package.mk
|
2013-09-28 19:24:13 +00:00
|
|
|
|
|
|
|
define Package/gluon-next-node
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
|
|
|
TITLE:=Next-node anycast address
|
2014-07-28 03:24:28 +00:00
|
|
|
DEPENDS:=+gluon-core +gluon-ebtables +gluon-mesh-batman-adv +kmod-macvlan
|
2013-09-28 19:24:13 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-next-node/description
|
|
|
|
Gluon community wifi mesh firmware framework: next-node anycast address
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-next-node/install
|
2014-05-14 10:31:16 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
2013-09-28 19:24:13 +00:00
|
|
|
endef
|
|
|
|
|
2014-07-05 00:48:56 +00:00
|
|
|
define Package/gluon-next-node/postinst
|
|
|
|
#!/bin/sh
|
|
|
|
$(call GluonCheckSite,check_site.lua)
|
|
|
|
endef
|
|
|
|
|
2013-09-28 19:24:13 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-next-node))
|