Makefile 720 B

12345678910111213141516171819202122232425262728293031323334353637
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=gluon-mesh-batman-adv-core
  3. PKG_VERSION:=1
  4. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  5. include $(GLUONDIR)/include/package.mk
  6. define Package/gluon-mesh-batman-adv-core
  7. SECTION:=gluon
  8. CATEGORY:=Gluon
  9. TITLE:=Support for batman-adv meshing (core)
  10. DEPENDS:=+gluon-core +gluon-client-bridge +firewall +libiwinfo-lua
  11. endef
  12. define Build/Prepare
  13. mkdir -p $(PKG_BUILD_DIR)
  14. endef
  15. define Build/Configure
  16. endef
  17. define Build/Compile
  18. endef
  19. define Package/gluon-mesh-batman-adv-core/install
  20. $(CP) ./files/* $(1)/
  21. endef
  22. define Package/gluon-mesh-batman-adv-core/postinst
  23. #!/bin/sh
  24. $(call GluonCheckSite,check_site.lua)
  25. endef
  26. $(eval $(call BuildPackage,gluon-mesh-batman-adv-core))