2013-01-31 10:36:18 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-mesh-vpn-fastd
|
2014-07-05 00:48:56 +00:00
|
|
|
PKG_VERSION:=3
|
2013-01-31 10:36:18 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
2016-02-02 05:38:03 +00:00
|
|
|
PKG_BUILD_DEPENDS := respondd
|
2013-01-31 10:36:18 +00:00
|
|
|
|
2016-10-08 22:18:45 +00:00
|
|
|
include ../gluon.mk
|
2013-01-31 10:36:18 +00:00
|
|
|
|
2016-07-10 18:08:44 +00:00
|
|
|
|
2013-01-31 10:36:18 +00:00
|
|
|
define Package/gluon-mesh-vpn-fastd
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
2017-03-10 15:21:32 +00:00
|
|
|
TITLE:=Support for connecting meshes via fastd
|
|
|
|
DEPENDS:=+gluon-core +libgluonutil +gluon-mesh-vpn-core +fastd
|
2013-01-31 10:36:18 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
2016-02-02 05:38:03 +00:00
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
2013-01-31 10:36:18 +00:00
|
|
|
endef
|
|
|
|
|
2016-07-10 18:08:44 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/Default)
|
|
|
|
$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
|
|
|
|
endef
|
|
|
|
|
2013-01-31 10:36:18 +00:00
|
|
|
define Package/gluon-mesh-vpn-fastd/install
|
2014-01-25 02:20:03 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
2016-07-10 18:08:44 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
|
2016-02-02 05:38:03 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/gluon/respondd
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/respondd.so $(1)/lib/gluon/respondd/mesh-vpn-fastd.so
|
2013-01-31 10:36:18 +00:00
|
|
|
endef
|
|
|
|
|
2014-07-05 00:48:56 +00:00
|
|
|
define Package/gluon-mesh-vpn-fastd/postinst
|
|
|
|
#!/bin/sh
|
|
|
|
$(call GluonCheckSite,check_site.lua)
|
|
|
|
endef
|
|
|
|
|
2013-01-31 10:36:18 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-mesh-vpn-fastd))
|