mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
9793454bd2
https://github.com/greatscottgadgets/hackrf/releases/tag/v2023.01.1 Signed-off-by: Diego Hurtado de Mendoza <diego.hdmp@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
701 B
Makefile
25 lines
701 B
Makefile
################################################################################
|
|
#
|
|
# hackrf
|
|
#
|
|
################################################################################
|
|
|
|
HACKRF_VERSION = 2023.01.1
|
|
HACKRF_SITE = https://github.com/greatscottgadgets/hackrf/releases/download/v$(HACKRF_VERSION)
|
|
HACKRF_SOURCE = hackrf-$(HACKRF_VERSION).tar.xz
|
|
HACKRF_LICENSE = GPL-2.0+, BSD-3-Clause
|
|
HACKRF_LICENSE_FILES = COPYING
|
|
HACKRF_DEPENDENCIES = fftw-single libusb
|
|
HACKRF_SUBDIR = host
|
|
HACKRF_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
HACKRF_CONF_OPTS += \
|
|
-DINSTALL_UDEV_RULES=ON \
|
|
-DUDEV_RULES_GROUP=plugdev
|
|
else
|
|
HACKRF_CONF_OPTS += -DINSTALL_UDEV_RULES=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|