generated from gaoyang3513/SDK_RK3288
[Mod] First commit
This commit is contained in:
52
package/gqrx/Config.in
Normal file
52
package/gqrx/Config.in
Normal file
@ -0,0 +1,52 @@
|
||||
comment "gqrx needs a toolchain w/ C++, threads, wchar, dynamic library"
|
||||
depends on BR2_USE_MMU # gnuradio
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
|
||||
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
!BR2_USE_WCHAR || BR2_STATIC_LIBS
|
||||
|
||||
comment "gqrx needs qt5"
|
||||
depends on !BR2_PACKAGE_QT5
|
||||
|
||||
comment "gqrx needs a toolchain not affected by GCC bug 43744 and 64735"
|
||||
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_43744 || BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
||||
|
||||
config BR2_PACKAGE_GQRX
|
||||
bool "gqrx"
|
||||
depends on BR2_USE_MMU # gnuradio
|
||||
depends on !BR2_STATIC_LIBS # gnuradio
|
||||
depends on BR2_INSTALL_LIBSTDCPP # boost
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
||||
depends on BR2_USE_WCHAR # boost
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
|
||||
depends on BR2_PACKAGE_QT5
|
||||
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # gnuradio -> boost-atomic
|
||||
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_43744 # gnuradio
|
||||
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # gnuradio
|
||||
select BR2_PACKAGE_BOOST
|
||||
select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
|
||||
select BR2_PACKAGE_BOOST_SYSTEM
|
||||
select BR2_PACKAGE_GNURADIO
|
||||
select BR2_PACKAGE_GNURADIO_ANALOG
|
||||
select BR2_PACKAGE_GNURADIO_AUDIO
|
||||
select BR2_PACKAGE_GNURADIO_BLOCKS
|
||||
select BR2_PACKAGE_GNURADIO_DIGITAL
|
||||
select BR2_PACKAGE_GNURADIO_FFT
|
||||
select BR2_PACKAGE_GNURADIO_FILTER
|
||||
select BR2_PACKAGE_GR_OSMOSDR
|
||||
select BR2_PACKAGE_QT5BASE_GUI
|
||||
select BR2_PACKAGE_QT5BASE_WIDGETS
|
||||
select BR2_PACKAGE_QT5SVG
|
||||
help
|
||||
Gqrx is an open source software defined radio (SDR) receiver
|
||||
implemented using GNU Radio and the Qt GUI
|
||||
toolkit. Currently it works on Linux and Mac with hardware
|
||||
supported by gr-osmosdr, including Funcube Dongle, RTL-SDR,
|
||||
Airspy, HackRF, BladeRF, RFSpace, USRP and SoapySDR.
|
||||
|
||||
Gqrx can operate as an AM/FM/SSB receiver with audio output
|
||||
or as an FFT-only instrument. There are also various hooks
|
||||
for interacting with external application using network
|
||||
sockets.
|
||||
|
||||
http://gqrx.dk/
|
||||
4
package/gqrx/gqrx.hash
Normal file
4
package/gqrx/gqrx.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# Locally calculated:
|
||||
sha256 aec35c77ebde9c71a5f973c509eec3d6aa2f18a6e052b180fcd9029d88273e5b gqrx-2.14.4.tar.gz
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
|
||||
sha256 7cc22ce5ee61df62e427ec43b8130de149edee3cafb5af4f18d59b6dc3958faf LICENSE-CTK
|
||||
21
package/gqrx/gqrx.mk
Normal file
21
package/gqrx/gqrx.mk
Normal file
@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# gqrx
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GQRX_VERSION = 2.14.4
|
||||
GQRX_SITE = $(call github,csete,gqrx,v$(GQRX_VERSION))
|
||||
GQRX_LICENSE = GPL-3.0+, Apache-2.0
|
||||
GQRX_LICENSE_FILES = COPYING LICENSE-CTK
|
||||
GQRX_DEPENDENCIES = boost gnuradio gr-osmosdr qt5base qt5svg
|
||||
|
||||
GQRX_CONF_OPTS = -DLINUX_AUDIO_BACKEND=Gr-audio
|
||||
|
||||
# gqrx can use __atomic builtins, so we need to link with
|
||||
# libatomic when available
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
||||
GQRX_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user