mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 06:33:41 +00:00
f50eb06441
350b960 add support for multi GNSS solutions fb87d0f ugps: add baud rate command line option a8171a0 main.c: -S does not take any options Build-tested: ramips/ltap-2hnd Run-tested: ramips/ltap-2hnd Signed-off-by: Arne Zachlod <arne@nerdkeller.org>
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ugps
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/ugps.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2023-01-27
|
|
PKG_SOURCE_VERSION:=a8171a07193351a9125024d5c759c0ebd6a6895c
|
|
PKG_MIRROR_HASH:=9116c9698c15744bb2e36a7cfd0a73f1609b6932f32ca07da57238aea8a2d5cf
|
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
PKG_LICENSE:=GPL-2.0+
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/ugps
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=OpenWrt GPS Daemon
|
|
DEPENDS:=+libubox +libubus
|
|
endef
|
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
|
|
|
define Package/ugps/conffiles
|
|
/etc/config/gps
|
|
endef
|
|
|
|
define Package/ugps/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ugps $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/ugps.init $(1)/etc/init.d/ugps
|
|
$(INSTALL_CONF) ./files/gps.config $(1)/etc/config/gps
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ugps))
|