2015-05-02 23:47:48 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
PKG_NAME:=gluon-web-mesh-vpn-fastd
|
2015-05-02 23:47:48 +00:00
|
|
|
PKG_VERSION:=1
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2016-10-08 22:18:45 +00:00
|
|
|
include ../gluon.mk
|
2015-05-02 23:47:48 +00:00
|
|
|
|
|
|
|
PKG_CONFIG_DEPENDS += $(GLUON_I18N_CONFIG)
|
|
|
|
|
2016-07-10 18:08:44 +00:00
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
define Package/gluon-web-mesh-vpn-fastd
|
2015-05-02 23:47:48 +00:00
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
2017-02-08 21:19:24 +00:00
|
|
|
TITLE:=gluon-web module to enable and disable encryption for the mesh VPN
|
|
|
|
DEPENDS:=+gluon-web-admin +gluon-mesh-vpn-fastd
|
2015-05-02 23:47:48 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2018-02-23 05:26:10 +00:00
|
|
|
$(call GluonBuildI18N,gluon-web-mesh-vpn-fastd,i18n)
|
2016-07-10 18:08:44 +00:00
|
|
|
$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
|
2015-05-02 23:47:48 +00:00
|
|
|
endef
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
define Package/gluon-web-mesh-vpn-fastd/install
|
2015-05-02 23:47:48 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
2016-07-10 18:08:44 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
|
2018-02-23 05:26:10 +00:00
|
|
|
$(call GluonInstallI18N,gluon-web-mesh-vpn-fastd,$(1))
|
2015-05-02 23:47:48 +00:00
|
|
|
endef
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
define Package/gluon-web-mesh-vpn-fastd/postinst
|
2015-05-02 23:47:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
$(call GluonCheckSite,check_site.lua)
|
|
|
|
endef
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-web-mesh-vpn-fastd))
|