mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 03:29:52 +00:00
With the recent move to using ZSTD as the default compression format for packaging git repo clones we must refresh all of the hashes for the packages feed as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
94 lines
2.4 KiB
Makefile
94 lines
2.4 KiB
Makefile
#
|
|
# 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-sdr
|
|
PKG_VERSION:=2.0.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=v2.0.1
|
|
PKG_SOURCE_URL:=https://gitea.osmocom.org/sdr/rtl-sdr
|
|
PKG_MIRROR_HASH:=731dfdf5ae70b3155b942c829467113a61590da90b643852ed82b73aae982094
|
|
|
|
PKG_MAINTAINER:=Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/rtl-sdr/Default
|
|
TITLE:=Software Defined Radio with Realtek RTL2832U
|
|
URL:=http://sdr.osmocom.org/trac/wiki/rtl-sdr
|
|
endef
|
|
|
|
define Package/rtl-sdr/Default/description
|
|
rtl-sdr allows DVB-T dongles based on the Realtek RTL2832U to be used as
|
|
an inexpensive SDR.
|
|
endef
|
|
|
|
define Package/rtl-sdr
|
|
$(call Package/rtl-sdr/Default)
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+librt +libpthread +librtlsdr
|
|
endef
|
|
|
|
define Package/rtl-sdr/description
|
|
$(call Package/rtl-sdr/Default/description)
|
|
|
|
This package contains the utilities and daemons.
|
|
endef
|
|
|
|
define Package/librtlsdr
|
|
$(call Package/rtl-sdr/Default)
|
|
TITLE+= shared library
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE+= library
|
|
DEPENDS:=+libusb-1.0
|
|
endef
|
|
|
|
define Package/librtlsdr/description
|
|
$(call Package/rtl-sdr/Default/description)
|
|
|
|
This package contains the librtlsdr shared library.
|
|
endef
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/librtlsdr.so* $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/librtlsdr.pc $(1)/usr/lib/pkgconfig/
|
|
endef
|
|
|
|
define Package/rtl-sdr/conffiles
|
|
/etc/config/rtl_tcp
|
|
endef
|
|
|
|
define Package/rtl-sdr/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/rtl_* $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) files/rtl_tcp.init $(1)/etc/init.d/rtl_tcp
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) files/rtl_tcp.config $(1)/etc/config/rtl_tcp
|
|
endef
|
|
|
|
define Package/librtlsdr/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/librtlsdr.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,rtl-sdr))
|
|
$(eval $(call BuildPackage,librtlsdr))
|