Makefile 866 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=ffho-wifi-blackout-workaround
  3. PKG_VERSION:=2
  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-wifi-blackout-workaround
  8. SECTION:=ffho
  9. CATEGORY:=Workarounds
  10. TITLE:=WiFi-Blackout workaround
  11. DEPENDS:=+gluon-core
  12. MAINTAINER:=Freifunk Hochstift <kontakt@hochstift.freifunk.net>
  13. URL:=https://git.c3pb.de/freifunk-pb/ffho-packages
  14. endef
  15. define Package/ffho-wifi-blackout-workaround/description
  16. Disables the ANI feature.
  17. endef
  18. define Build/Prepare
  19. mkdir -p $(PKG_BUILD_DIR)
  20. endef
  21. define Build/Configure
  22. endef
  23. define Build/Compile
  24. endef
  25. define Package/ffho-wifi-blackout-workaround/install
  26. $(CP) ./files/* $(1)/
  27. endef
  28. $(eval $(call BuildPackage,ffho-wifi-blackout-workaround))