84b29ef40b
https://github.com/merbanan/rtl_433/releases/tag/21.12 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
35 lines
870 B
Makefile
35 lines
870 B
Makefile
################################################################################
|
|
#
|
|
# rtl_433
|
|
#
|
|
################################################################################
|
|
|
|
RTL_433_VERSION = 21.12
|
|
RTL_433_SITE = $(call github,merbanan,rtl_433,$(RTL_433_VERSION))
|
|
RTL_433_LICENSE = GPL-2.0+
|
|
RTL_433_LICENSE_FILES = COPYING
|
|
|
|
# Force Release build to remove ASAN.
|
|
RTL_433_CONF_OPTS = \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DBUILD_DOCUMENTATION=OFF \
|
|
-DBUILD_TESTING=OFF \
|
|
-DBUILD_TESTING_ANALYZER=OFF \
|
|
-DENABLE_SOAPYSDR=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBRTLSDR),y)
|
|
RTL_433_DEPENDENCIES += librtlsdr
|
|
RTL_433_CONF_OPTS += -DENABLE_RTLSDR=ON
|
|
else
|
|
RTL_433_CONF_OPTS += -DENABLE_RTLSDR=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
RTL_433_DEPENDENCIES += openssl
|
|
RTL_433_CONF_OPTS += -DENABLE_OPENSSL=ON
|
|
else
|
|
RTL_433_CONF_OPTS += -DENABLE_OPENSSL=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|