30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
701 B
Makefile
23 lines
701 B
Makefile
################################################################################
|
|
#
|
|
# libgsasl
|
|
#
|
|
################################################################################
|
|
|
|
LIBGSASL_VERSION = 1.8.0
|
|
LIBGSASL_SITE = $(BR2_GNU_MIRROR)/gsasl
|
|
LIBGSASL_LICENSE = LGPL-2.1+ (library), GPL-3.0+ (programs)
|
|
LIBGSASL_LICENSE_FILES = README COPYING.LIB COPYING
|
|
LIBGSASL_INSTALL_STAGING = YES
|
|
# It doesn't seem to build with our libgcrypt so better be safe
|
|
LIBGSASL_CONF_OPTS = --without-libgcrypt
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
|
LIBGSASL_CONF_OPTS += --with-libidn-prefix=$(STAGING_DIR)/usr
|
|
LIBGSASL_DEPENDENCIES += libidn
|
|
else
|
|
LIBGSASL_CONF_OPTS += --without-stringprep
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|