You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2011 segal.ubi.pt
  3. # Copyright (C) 2010-2015 OpenWrt.org
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=ntripclient
  10. PKG_VERSION:=1.51
  11. PKG_RELEASE:=2
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=https://codeload.github.com/nunojpg/ntripclient/tar.gz/v$(PKG_VERSION)?
  14. PKG_HASH:=d668e87b2260ef262e2066ac0ed217ec77478170deaf76ff48f2116a23c48ae5
  15. PKG_LICENSE:=GPL-2.0-or-later
  16. PKG_MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com>
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/ntripclient
  19. SECTION:=net
  20. CATEGORY:=Network
  21. SUBMENU:=NTRIP
  22. TITLE:=Ntrip Version 2.0 Command Line Client
  23. URL:=http://igs.bkg.bund.de/ntrip/download
  24. endef
  25. define Package/ntripclient/description
  26. Ntrip Version 2.0 Command Line Client, reading from Ntrip Version 1.0 or 2.0 Caster
  27. endef
  28. MAKE_FLAGS += \
  29. OPTS="$(TARGET_CFLAGS)"
  30. define Package/ntripclient/install
  31. $(INSTALL_DIR) $(1)/usr/bin
  32. $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntripclient $(1)/usr/bin/
  33. endef
  34. $(eval $(call BuildPackage,ntripclient))