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.

52 lines
1.4 KiB

  1. #
  2. # Copyright (C) 2011 segal.ubi.pt
  3. # Copyright (C) 2010-2014 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:=ntripcaster
  10. PKG_VERSION:=0.1.5
  11. PKG_RELEASE:=1
  12. PKG_LICENSE:=GPL-2.0+
  13. PKG_SOURCE:=$(PKG_NAME)$(PKG_VERSION).zip
  14. PKG_SOURCE_URL:=http://igs.bkg.bund.de/root_ftp/NTRIP/software/
  15. PKG_MD5SUM:=8c85a6c31d8c5cdf2638fe103207a1fd
  16. PKG_MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com>
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/ntripcaster
  19. SECTION:=net
  20. CATEGORY:=Network
  21. SUBMENU:=NTRIP
  22. TITLE:=Standard Ntrip Broadcaster
  23. URL:=http://igs.bkg.bund.de/ntrip/download
  24. DEPENDS:=+libpthread
  25. endef
  26. define Package/ntripcaster/description
  27. BKG Standard Ntrip Broadcaster
  28. endef
  29. define Build/Prepare
  30. mkdir -p $(PKG_BUILD_DIR)
  31. unzip $(DL_DIR)/$(PKG_SOURCE) -d $(PKG_BUILD_DIR)
  32. mv $(PKG_BUILD_DIR)/$(PKG_NAME)$(PKG_VERSION)/* $(PKG_BUILD_DIR)
  33. chmod +x $(PKG_BUILD_DIR)/configure
  34. endef
  35. define Package/ntripcaster/install
  36. $(INSTALL_DIR) $(1)/usr/local/ntripcaster/bin
  37. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ntripcaster $(1)/usr/local/ntripcaster/bin/
  38. $(INSTALL_DIR) $(1)/usr/local/ntripcaster/conf
  39. $(INSTALL_DATA) $(PKG_BUILD_DIR)/conf/ntripcaster.conf.dist $(1)/usr/local/ntripcaster/conf/
  40. $(INSTALL_DATA) $(PKG_BUILD_DIR)/conf/sourcetable.dat.dist $(1)/usr/local/ntripcaster/conf/
  41. endef
  42. $(eval $(call BuildPackage,ntripcaster))