Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=ffho-site-auto-select
  3. PKG_VERSION:=1
  4. PKG_RELEASE:=$(GLUON_VERSION).$(GLUON_SITE_CODE)-$(GLUON_RELEASE).$(GLUON_CONFIG_VERSION)
  5. PFG_BUILD_DEPENDS := lua-cjson/host
  6. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  7. include $(INCLUDE_DIR)/package.mk
  8. define Package/ffho-site-auto-select
  9. SECTION:=ffho
  10. CATEGORY:=Site-select
  11. TITLE:=Toolset to autodetect the site.
  12. DEPENDS:=+gluon-core +micrond +gluon-neighbour-info +ffho-site-generate
  13. MAINTAINER:=Freifunk Hochstift <kontakt@hochstift.freifunk.net>
  14. URL:=https://git.c3pb.de/freifunk-pb/ffho-packages
  15. endef
  16. define Package/ffho-site-auto-select/description
  17. Toolset to autodetect the site by geo and gluon-neighbour-info.
  18. endef
  19. define Build/Prepare
  20. mkdir -p $(PKG_BUILD_DIR)
  21. endef
  22. define Build/Configure
  23. endef
  24. define Build/Compile
  25. endef
  26. define Package/ffho-site-auto-select/install
  27. $(CP) ./files/* $(1)/
  28. $(INSTALL_DIR) $(1)/lib/gluon/site-select
  29. lua -e 'print(require("cjson").encode(require("cjson").decode(io.open("$(GLUON_SITEDIR)/extra/geo.json"):read("*a"))))' > $(1)/lib/gluon/site-select/geo.json
  30. endef
  31. $(eval $(call BuildPackage,ffho-site-auto-select))