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>
18 lines
564 B
Makefile
18 lines
564 B
Makefile
################################################################################
|
|
#
|
|
# cloog
|
|
#
|
|
################################################################################
|
|
|
|
CLOOG_VERSION = 0.18.4
|
|
CLOOG_SITE = http://www.bastoul.net/cloog/pages/download
|
|
CLOOG_LICENSE = LGPL-2.1+
|
|
HOST_CLOOG_DEPENDENCIES = host-gmp host-isl
|
|
# Our libtool patch doesn't apply, and since this package is only
|
|
# built for the host, we don't really care about it.
|
|
CLOOG_LIBTOOL_PATCH = NO
|
|
|
|
HOST_CLOOG_CONF_OPTS = --with-isl=system --with-polylib=no
|
|
|
|
$(eval $(host-autotools-package))
|