mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
For v2.17.7 release note, see:
https://github.com/gqrx-sdr/gqrx/releases/tag/v2.17.7
For all other release notes since 2.15.9, see:
https://github.com/gqrx-sdr/gqrx/releases
This commit also updates the LICENSE-CTK hash after minor
reformatting in commit [1].
[1] 9857b1b89f
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
[Julien:
- add links to release notes in commit log
- sort _CONF_OPTS alphabetically in gqrx.mk
- fix LICENSE-CTK hash
]
Signed-off-by: Julien Olivain <ju.o@free.fr>
24 lines
680 B
Makefile
24 lines
680 B
Makefile
################################################################################
|
|
#
|
|
# gqrx
|
|
#
|
|
################################################################################
|
|
|
|
GQRX_VERSION = 2.17.7
|
|
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 libsndfile qt5base qt5svg
|
|
|
|
GQRX_CONF_OPTS = \
|
|
-DFORCE_QT5=ON \
|
|
-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))
|