9254f02266
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2/LGPLv2+ is LGPL-2.0/LGPL-2.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2(\+)?/LGPL-2.0\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
618 B
Makefile
24 lines
618 B
Makefile
################################################################################
|
|
#
|
|
# libsvg
|
|
#
|
|
################################################################################
|
|
|
|
LIBSVG_VERSION = 0.1.4
|
|
LIBSVG_SITE = http://cairographics.org/snapshots
|
|
LIBSVG_DEPENDENCIES = host-pkgconf libpng jpeg
|
|
LIBSVG_INSTALL_STAGING = YES
|
|
LIBSVG_LICENSE = LGPL-2.0+
|
|
LIBSVG_LICENSE_FILES = COPYING
|
|
|
|
# libsvg needs at last a XML parser
|
|
ifeq ($(BR2_PACKAGE_EXPAT),y)
|
|
LIBSVG_CONF_OPTS += --with-expat
|
|
LIBSVG_DEPENDENCIES += expat
|
|
else
|
|
LIBSVG_CONF_OPTS += --with-libxml2
|
|
LIBSVG_DEPENDENCIES += libxml2
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|