Makefile 865 B

12345678910111213141516171819202122232425262728293031323334353637
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=gluon-config-mode-autoupdater
  3. PKG_VERSION:=1
  4. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  5. include ../gluon.mk
  6. PKG_CONFIG_DEPENDS += $(GLUON_I18N_CONFIG)
  7. define Package/gluon-config-mode-autoupdater
  8. SECTION:=gluon
  9. CATEGORY:=Gluon
  10. TITLE:=Config Mode: Let the user know whether the autoupdater is enabled or not
  11. DEPENDS:=+gluon-config-mode-core +gluon-autoupdater
  12. endef
  13. define Build/Prepare
  14. mkdir -p $(PKG_BUILD_DIR)
  15. endef
  16. define Build/Configure
  17. endef
  18. define Build/Compile
  19. $(call GluonBuildI18N,gluon-config-mode-autoupdater,i18n)
  20. $(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
  21. endef
  22. define Package/gluon-config-mode-autoupdater/install
  23. $(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
  24. $(call GluonInstallI18N,gluon-config-mode-autoupdater,$(1))
  25. endef
  26. $(eval $(call BuildPackage,gluon-config-mode-autoupdater))