af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# bctoolbox
|
|
#
|
|
################################################################################
|
|
|
|
BCTOOLBOX_VERSION = 0.4.0
|
|
BCTOOLBOX_SITE = $(call github,BelledonneCommunications,bctoolbox,$(BCTOOLBOX_VERSION))
|
|
BCTOOLBOX_LICENSE = GPL-2.0+
|
|
BCTOOLBOX_LICENSE_FILES = COPYING
|
|
BCTOOLBOX_INSTALL_STAGING = YES
|
|
|
|
# Set CMAKE_SKIP_RPATH to prevent bctoolbox from adding the rpath to
|
|
# shared library.
|
|
BCTOOLBOX_CONF_OPTS = \
|
|
-DENABLE_POLARSSL=OFF \
|
|
-DENABLE_STRICT=OFF \
|
|
-DENABLE_TESTS_COMPONENT=OFF \
|
|
-DENABLE_TESTS=OFF \
|
|
-DGIT_EXECUTABLE=OFF \
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
|
|
ifeq ($(BR2_PACKAGE_MBEDTLS),y)
|
|
BCTOOLBOX_DEPENDENCIES += mbedtls
|
|
BCTOOLBOX_CONF_OPTS += -DENABLE_MBEDTLS=ON
|
|
else
|
|
BCTOOLBOX_CONF_OPTS += -DENABLE_MBEDTLS=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
BCTOOLBOX_CONF_OPTS += -DENABLE_SHARED=OFF -DENABLE_STATIC=ON
|
|
else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
|
BCTOOLBOX_CONF_OPTS += -DENABLE_SHARED=ON -DENABLE_STATIC=ON
|
|
else ifeq ($(BR2_SHARED_LIBS),y)
|
|
BCTOOLBOX_CONF_OPTS += -DENABLE_SHARED=ON -DENABLE_STATIC=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|