1
0
mirror of https://github.com/freifunk-gluon/packages.git synced 2024-06-17 12:44:00 +02:00
gluon-packages/gluon/gluon-mesh-vpn-fastd/Makefile

41 lines
841 B
Makefile
Raw Normal View History

2013-01-31 11:36:18 +01:00
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-mesh-vpn-fastd
2014-07-05 02:48:56 +02:00
PKG_VERSION:=3
2013-01-31 11:36:18 +01:00
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
2014-07-05 02:48:56 +02:00
include $(GLUONDIR)/include/package.mk
2013-01-31 11:36:18 +01:00
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 +gluon-wan-dnsmasq +fastd +iptables-mod-extra
2013-01-31 11:36:18 +01:00
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
endef
define Package/gluon-mesh-vpn-fastd/install
$(CP) ./files/* $(1)/
2013-01-31 11:36:18 +01:00
endef
2014-07-05 02:48:56 +02:00
define Package/gluon-mesh-vpn-fastd/postinst
#!/bin/sh
$(call GluonCheckSite,check_site.lua)
endef
2013-01-31 11:36:18 +01:00
$(eval $(call BuildPackage,gluon-mesh-vpn-fastd))