Add rtl-ais: rtl-sdr AIS dual channel tuner

Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
This commit is contained in:
Nuno Goncalves 2015-07-14 00:52:39 +01:00
parent 15107764b3
commit 957d75cd2f
1 changed files with 46 additions and 0 deletions

46
utils/rtl-ais/Makefile Normal file
View File

@ -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 <nunojpg@gmail.com>
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))