Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=ffho-config-mode-geo-location
  3. PKG_VERSION:=1
  4. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  5. include $(GLUONDIR)/include/package.mk
  6. PKG_CONFIG_DEPENDS += $(GLUON_I18N_CONFIG)
  7. define Package/ffho-config-mode-geo-location
  8. SECTION:=ffho
  9. CATEGORY:=Gluon
  10. TITLE:=Set geographic location of a node
  11. DEPENDS:=gluon-config-mode-core-virtual +gluon-node-info
  12. PROVIDES:=gluon-config-mode-geo-location
  13. MAINTAINER:=Freifunk Hochstift <kontakt@hochstift.freifunk.net>
  14. URL:=https://git.c3pb.de/freifunk-pb/ffho-packages
  15. endef
  16. define Build/Prepare
  17. mkdir -p $(PKG_BUILD_DIR)
  18. endef
  19. define Build/Configure
  20. endef
  21. define Build/Compile
  22. $(call GluonBuildI18N,ffho-config-mode-geo-location,i18n)
  23. endef
  24. define Package/ffho-config-mode-geo-location/install
  25. $(CP) ./files/* $(1)/
  26. $(call GluonInstallI18N,ffho-config-mode-geo-location,$(1))
  27. endef
  28. define Package/ffho-config-mode-geo-location/postinst
  29. #!/bin/sh
  30. $(call GluonCheckSite,check_site.lua)
  31. endef
  32. $(eval $(call BuildPackage,ffho-config-mode-geo-location))