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:=1
  10. PKG_SOURCE_URL=$(PROJECT_GIT)/project/ugps.git
  11. PKG_SOURCE_PROTO:=git
  12. PKG_SOURCE_DATE:=2025-10-03
  13. PKG_SOURCE_VERSION:=9a351d4111138aa13f957fa82cec818812e7b0ea
  14. PKG_MIRROR_HASH:=9aa3fd8178a922557fcd3fd34f3c9d4c3d4a31ecb3c94ad9fffcb29c4bb8b50a
  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))