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>
35 lines
1.3 KiB
Makefile
35 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# cryptsetup
|
|
#
|
|
################################################################################
|
|
|
|
CRYPTSETUP_VERSION_MAJOR = 1.7
|
|
CRYPTSETUP_VERSION = $(CRYPTSETUP_VERSION_MAJOR).4
|
|
CRYPTSETUP_SOURCE = cryptsetup-$(CRYPTSETUP_VERSION).tar.xz
|
|
CRYPTSETUP_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/cryptsetup/v$(CRYPTSETUP_VERSION_MAJOR)
|
|
CRYPTSETUP_DEPENDENCIES = lvm2 popt util-linux host-pkgconf \
|
|
$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
|
|
CRYPTSETUP_LICENSE = GPL-2.0+ (programs), LGPL-2.1+ (library)
|
|
CRYPTSETUP_LICENSE_FILES = COPYING COPYING.LGPL
|
|
CRYPTSETUP_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
CRYPTSETUP_CONF_ENV += LDFLAGS="$(TARGET_LDFLAGS) -lintl"
|
|
endif
|
|
|
|
# cryptsetup uses libgcrypt by default, but can be configured to use OpenSSL
|
|
# or kernel crypto modules instead
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
CRYPTSETUP_DEPENDENCIES += libgcrypt
|
|
CRYPTSETUP_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
|
CRYPTSETUP_CONF_OPTS += --with-crypto_backend=gcrypt
|
|
else ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
CRYPTSETUP_DEPENDENCIES += openssl
|
|
CRYPTSETUP_CONF_OPTS += --with-crypto_backend=openssl
|
|
else
|
|
CRYPTSETUP_CONF_OPTS += --with-crypto_backend=kernel
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|