9f59b378a3
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
572 B
Makefile
18 lines
572 B
Makefile
################################################################################
|
|
#
|
|
# p11-kit
|
|
#
|
|
################################################################################
|
|
|
|
P11_KIT_VERSION = 0.23.2
|
|
P11_KIT_SITE = http://p11-glue.freedesktop.org/releases
|
|
P11_KIT_DEPENDENCIES = host-pkgconf libffi libtasn1
|
|
P11_KIT_INSTALL_STAGING = YES
|
|
P11_KIT_CONF_OPTS = --disable-static
|
|
P11_KIT_CONF_ENV = ac_cv_have_decl_program_invocation_short_name=yes \
|
|
ac_cv_have_decl___progname=no
|
|
P11_KIT_LICENSE = BSD-3-Clause
|
|
P11_KIT_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|