89fbba72fa
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv3/LGPLv3+ is LGPL-3.0/LGPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv3(\+)?/LGPL-3.0\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
807 B
Makefile
22 lines
807 B
Makefile
################################################################################
|
|
#
|
|
# libfreefare
|
|
#
|
|
################################################################################
|
|
|
|
LIBFREEFARE_VERSION = 0.4.0
|
|
LIBFREEFARE_SOURCE = libfreefare-$(LIBFREEFARE_VERSION).tar.bz2
|
|
# Do not use the github helper here, the generated tarball is *NOT*
|
|
# the same as the one uploaded by upstream for the release.
|
|
LIBFREEFARE_SITE = https://github.com/nfc-tools/libfreefare/releases/download/libfreefare-$(LIBFREEFARE_VERSION)
|
|
LIBFREEFARE_DEPENDENCIES = libnfc openssl
|
|
LIBFREEFARE_LICENSE = LGPL-3.0+ with exception
|
|
LIBFREEFARE_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
# openssl needs zlib even if the libfreefare example itself doesn't
|
|
LIBFREEFARE_CONF_ENV += LIBS='-lz'
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|