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>
30 lines
987 B
Makefile
30 lines
987 B
Makefile
################################################################################
|
|
#
|
|
# pseudo
|
|
#
|
|
################################################################################
|
|
|
|
PSEUDO_VERSION = 45eca34c754d416a38bee90fb2d3c110a0b6cc5f
|
|
PSEUDO_SITE = https://git.yoctoproject.org/git/pseudo
|
|
PSEUDO_SITE_METHOD = git
|
|
|
|
# No "or later" clause.
|
|
PSEUDO_LICENSE = LGPL-2.1
|
|
PSEUDO_LICENSE_FILES = COPYING
|
|
|
|
HOST_PSEUDO_DEPENDENCIES = host-attr host-sqlite
|
|
|
|
# configure script is not generated by autoconf, so passing --libdir
|
|
# is necessary, even if the infrastructure passes --prefix already.
|
|
# It also does not use CFLAGS from the environment, they need to be
|
|
# specified with a custom --cflags option. Also force rpath to avoid
|
|
# a warning at configure time.
|
|
HOST_PSEUDO_CONF_OPTS = \
|
|
--cflags="$(HOSTCFLAGS)" \
|
|
--with-rpath=$(HOST_DIR)/usr/lib \
|
|
--bits=$(if $(filter %64,$(HOSTARCH)),64,32) \
|
|
--libdir=$(HOST_DIR)/usr/lib \
|
|
--with-sqlite=$(HOST_DIR)/usr
|
|
|
|
$(eval $(host-autotools-package))
|