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.

54 lines
1.5 KiB

  1. #
  2. # Copyright (C) 2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. include $(TOPDIR)/rules.mk
  7. PKG_NAME:=rtl-ais
  8. PKG_VERSION:=20151213
  9. PKG_RELEASE=$(PKG_SOURCE_VERSION)
  10. PKG_SOURCE_PROTO:=git
  11. PKG_SOURCE_URL:=https://github.com/dgiardini/rtl-ais.git
  12. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  13. PKG_SOURCE_VERSION:=b805be0164475e58a73b57763a8cbbf8a2bd0ded
  14. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
  15. PKG_MIRROR_HASH:=0bf15869935e4496108ade4f7e9c1f7990b11ce53c9c1e0c9e81bc7f082b33b5
  16. PKG_LICENSE:=GPL-2.0+
  17. PKG_LICENSE_FILES:=COPYING
  18. PKG_MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com>
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/rtl-ais
  21. SECTION:=utils
  22. CATEGORY:=Utilities
  23. TITLE:=rtl-sdr AIS dual channel tuner
  24. DEPENDS:=+libpthread +librtlsdr
  25. URL:=https://github.com/dgiardini/rtl-ais
  26. endef
  27. define Package/rtl-ais/description
  28. rtl_ais uses a rtl2832u dvb-t dongle to tune AIS (Automatic Identification
  29. System) used on ships and by vessel traffic services
  30. endef
  31. define Package/rtl-ais/conffiles
  32. /etc/config/rtl_ais
  33. endef
  34. define Package/rtl-ais/install
  35. $(INSTALL_DIR) $(1)/usr/bin
  36. $(INSTALL_BIN) $(PKG_BUILD_DIR)/rtl_ais $(1)/usr/bin/
  37. $(INSTALL_DIR) $(1)/etc/init.d
  38. $(INSTALL_BIN) ./files/rtl_ais.init $(1)/etc/init.d/rtl_ais
  39. $(INSTALL_DIR) $(1)/etc/config
  40. $(INSTALL_DATA) ./files/uci_rtl_ais $(1)/etc/config/rtl_ais
  41. endef
  42. $(eval $(call BuildPackage,rtl-ais))