From 957d75cd2f6df52ed58f0d9c70c09a0cf851c532 Mon Sep 17 00:00:00 2001 From: Nuno Goncalves Date: Tue, 14 Jul 2015 00:52:39 +0100 Subject: [PATCH] Add rtl-ais: rtl-sdr AIS dual channel tuner Signed-off-by: Nuno Goncalves --- utils/rtl-ais/Makefile | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 utils/rtl-ais/Makefile diff --git a/utils/rtl-ais/Makefile b/utils/rtl-ais/Makefile new file mode 100644 index 0000000000..9f692d2b58 --- /dev/null +++ b/utils/rtl-ais/Makefile @@ -0,0 +1,46 @@ +# +# Copyright (C) 2015 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:=rtl-ais +PKG_VERSION:=20150713 + +PKG_RELEASE=$(PKG_SOURCE_VERSION) + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL:=https://github.com/dgiardini/rtl-ais.git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_VERSION:=d1084f6514cb161266f5bc5c6662070ad7c87560 +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz + +PKG_LICENSE:=GPL-2.0+ +PKG_LICENSE_FILES:=COPYING + +PKG_MAINTAINER:=Nuno Goncalves + +include $(INCLUDE_DIR)/package.mk + +define Package/rtl-ais + SECTION:=utils + CATEGORY:=Utilities + TITLE:=rtl-sdr AIS dual channel tuner + DEPENDS:=+libpthread +librtlsdr + URL:=https://github.com/dgiardini/rtl-ais +endef + +define Package/rtl-ais/description + rtl_ais uses a rtl2832u dvb-t dongle to tune AIS (Automatic Identification + System) used on ships and by vessel traffic services +endef + + +define Package/rtl-ais/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/rtl_ais $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,rtl-ais))