Makefile 929 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=ffho-luci-remote-syslog
  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 $(GLUONDIR)/include/package.mk
  7. PKG_CONFIG_DEPENDS += $(GLUON_I18N_CONFIG)
  8. define Package/ffho-luci-remote-syslog
  9. SECTION:=ffho
  10. CATEGORY:=FFHO
  11. TITLE:=Luci module for setting a remote syslog server
  12. DEPENDS:=+gluon-luci-admin
  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-luci-remote-syslog,i18n)
  23. endef
  24. define Package/ffho-luci-remote-syslog/install
  25. $(CP) ./files/* $(1)/
  26. $(call GluonInstallI18N,ffho-luci-remote-syslog,$(1))
  27. endef
  28. $(eval $(call BuildPackage,ffho-luci-remote-syslog))