Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=gluon-status-page-api
  3. PKG_VERSION:=1
  4. PKG_RELEASE:=1
  5. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
  6. PKG_BUILD_DEPENDS := respondd
  7. include ../gluon.mk
  8. define Package/gluon-status-page-api
  9. SECTION:=gluon
  10. CATEGORY:=Gluon
  11. TITLE:=API for gluon-status-page
  12. DEPENDS:=+gluon-core +uhttpd +sse-multiplex +gluon-neighbour-info +gluon-respondd +libiwinfo +libjson-c +libnl-tiny +libubus-lua +libbatadv
  13. endef
  14. define Build/Prepare
  15. mkdir -p $(PKG_BUILD_DIR)
  16. $(CP) ./src/* $(PKG_BUILD_DIR)/
  17. endef
  18. define Build/Compile
  19. $(call Build/Compile/Default)
  20. $(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
  21. endef
  22. define Package/gluon-status-page-api/install
  23. $(INSTALL_DIR) $(1)/lib/gluon/status-page/providers
  24. $(INSTALL_BIN) $(PKG_BUILD_DIR)/neighbours-batadv $(1)/lib/gluon/status-page/providers/
  25. $(INSTALL_BIN) $(PKG_BUILD_DIR)/stations $(1)/lib/gluon/status-page/providers/
  26. $(INSTALL_DIR) $(1)/lib/gluon/respondd
  27. $(CP) $(PKG_BUILD_DIR)/respondd.so $(1)/lib/gluon/respondd/status-page-api.so
  28. $(CP) ./files/* $(1)/
  29. $(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
  30. endef
  31. $(eval $(call BuildPackage,gluon-status-page-api))