Makefile 851 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=gluon-mesh-vpn-fastd
  3. PKG_VERSION:=3
  4. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  5. include $(GLUONDIR)/include/package.mk
  6. define Package/gluon-mesh-vpn-fastd
  7. SECTION:=gluon
  8. CATEGORY:=Gluon
  9. TITLE:=Support for connecting batman-adv meshes via fastd
  10. DEPENDS:=+gluon-core gluon-mesh-batman-adv +gluon-wan-dnsmasq +fastd +iptables-mod-extra +simple-tc
  11. endef
  12. define Package/gluon-mesh-vpn-fastd/description
  13. Gluon community wifi mesh firmware framework: fastd support
  14. endef
  15. define Build/Prepare
  16. mkdir -p $(PKG_BUILD_DIR)
  17. endef
  18. define Build/Configure
  19. endef
  20. define Build/Compile
  21. endef
  22. define Package/gluon-mesh-vpn-fastd/install
  23. $(CP) ./files/* $(1)/
  24. endef
  25. define Package/gluon-mesh-vpn-fastd/postinst
  26. #!/bin/sh
  27. $(call GluonCheckSite,check_site.lua)
  28. endef
  29. $(eval $(call BuildPackage,gluon-mesh-vpn-fastd))