6f848c068f
- Drop all patches (already in version)
- Threads is not mandatory since
4f5231bef2
https://github.com/merbanan/rtl_433/releases/tag/22.11
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# rtl_433
|
|
#
|
|
################################################################################
|
|
|
|
RTL_433_VERSION = 22.11
|
|
RTL_433_SITE = $(call github,merbanan,rtl_433,$(RTL_433_VERSION))
|
|
RTL_433_LICENSE = GPL-2.0+
|
|
RTL_433_LICENSE_FILES = COPYING
|
|
RTL_433_CPE_ID_VENDOR = rtl_433_project
|
|
|
|
# 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
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
RTL_433_CONF_OPTS += -DENABLE_THREADS=ON
|
|
else
|
|
RTL_433_CONF_OPTS += -DENABLE_THREADS=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|