2013-01-31 10:36:18 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-mesh-vpn-fastd
|
2014-01-04 08:19:13 +00:00
|
|
|
PKG_VERSION:=1
|
|
|
|
PKG_RELEASE:=1.$(GLUON_CONFIG_VERSION)
|
2013-01-31 10:36:18 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/gluon-mesh-vpn-fastd
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
|
|
|
TITLE:=Support for connecting batman-adv meshes via fastd
|
|
|
|
DEPENDS:=+gluon-core +gluon-mesh-batman-adv +fastd
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-mesh-vpn-fastd/description
|
|
|
|
Gluon community wifi mesh firmware framework: fastd support
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2013-09-30 19:29:52 +00:00
|
|
|
$(GLUON_CONFIGURE) fastd.pl > $(PKG_BUILD_DIR)/fastd.sh
|
2013-01-31 10:36:18 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-mesh-vpn-fastd/install
|
2013-10-02 18:30:09 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
2013-09-30 19:29:52 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/gluon/upgrade/mesh-vpn-fastd/invariant
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/fastd.sh $(1)/lib/gluon/upgrade/mesh-vpn-fastd/invariant/010-mesh-vpn-fastd
|
2013-01-31 10:36:18 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gluon-mesh-vpn-fastd))
|