Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Copyright (C) 2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=ugps
  9. PKG_RELEASE:=2
  10. PKG_SOURCE_URL=$(PROJECT_GIT)/project/ugps.git
  11. PKG_SOURCE_PROTO:=git
  12. PKG_SOURCE_DATE:=2023-01-27
  13. PKG_SOURCE_VERSION:=a8171a07193351a9125024d5c759c0ebd6a6895c
  14. PKG_MIRROR_HASH:=9116c9698c15744bb2e36a7cfd0a73f1609b6932f32ca07da57238aea8a2d5cf
  15. PKG_MAINTAINER:=John Crispin <[email protected]>
  16. PKG_LICENSE:=GPL-2.0+
  17. include $(INCLUDE_DIR)/package.mk
  18. include $(INCLUDE_DIR)/cmake.mk
  19. define Package/ugps
  20. SECTION:=utils
  21. CATEGORY:=Utilities
  22. TITLE:=OpenWrt GPS Daemon
  23. DEPENDS:=+libubox +libubus
  24. endef
  25. TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
  26. define Package/ugps/conffiles
  27. /etc/config/gps
  28. endef
  29. define Package/ugps/install
  30. $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config
  31. $(INSTALL_BIN) $(PKG_BUILD_DIR)/ugps $(1)/usr/sbin/
  32. $(INSTALL_BIN) ./files/ugps.init $(1)/etc/init.d/ugps
  33. $(INSTALL_CONF) ./files/gps.config $(1)/etc/config/gps
  34. endef
  35. $(eval $(call BuildPackage,ugps))