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>
19 lines
650 B
Makefile
19 lines
650 B
Makefile
################################################################################
|
|
#
|
|
# atk
|
|
#
|
|
################################################################################
|
|
|
|
ATK_VERSION_MAJOR = 2.22
|
|
ATK_VERSION = $(ATK_VERSION_MAJOR).0
|
|
ATK_SOURCE = atk-$(ATK_VERSION).tar.xz
|
|
ATK_SITE = http://ftp.gnome.org/pub/gnome/sources/atk/$(ATK_VERSION_MAJOR)
|
|
ATK_LICENSE = LGPL-2.0+
|
|
ATK_LICENSE_FILES = COPYING
|
|
ATK_INSTALL_STAGING = YES
|
|
ATK_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
|
|
ATK_CONF_OPTS = --disable-glibtest --enable-explicit-deps=no
|
|
ATK_DEPENDENCIES = libglib2 host-pkgconf
|
|
|
|
$(eval $(autotools-package))
|