Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=ffho-autoupdater-wifi-fallback-legacy
  3. PKG_VERSION:=1
  4. PKG_RELEASE:=$(GLUON_VERSION).$(GLUON_SITE_CODE)-$(GLUON_RELEASE).$(GLUON_CONFIG_VERSION)
  5. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  6. include $(INCLUDE_DIR)/package.mk
  7. define Package/ffho-autoupdater-wifi-fallback-legacy
  8. SECTION:=ffho
  9. CATEGORY:=Workarounds
  10. TITLE:=Toolset of scripts for migration of ffho-autoupdater-wifi-fallback.
  11. DEPENDS:=+ffho-autoupdater-wifi-fallback
  12. MAINTAINER:=Freifunk Hochstift <kontakt@hochstift.freifunk.net>
  13. URL:=https://git.c3pb.de/freifunk-pb/ffho-packages
  14. endef
  15. define Package/ffho-autoupdater-wifi-fallback-legacy/description
  16. A collection of scripts that fix and cleanup configurations off
  17. ffho-autoupdater-wifi-fallback on a node when upgrading the firmware.
  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-autoupdater-wifi-fallback-legacy/install
  27. $(CP) ./files/* $(1)/
  28. endef
  29. $(eval $(call BuildPackage,ffho-autoupdater-wifi-fallback-legacy))