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>
22 lines
528 B
Makefile
22 lines
528 B
Makefile
################################################################################
|
|
#
|
|
# gamin
|
|
#
|
|
################################################################################
|
|
|
|
GAMIN_VERSION = 0.1.10
|
|
GAMIN_SITE = http://www.gnome.org/~veillard/gamin/sources
|
|
GAMIN_AUTORECONF = YES
|
|
GAMIN_INSTALL_STAGING = YES
|
|
GAMIN_LICENSE = LGPL-2.0+
|
|
GAMIN_LICENSE_FILES = COPYING
|
|
|
|
# python support broken
|
|
GAMIN_CONF_OPTS += --without-python
|
|
|
|
GAMIN_CONF_ENV = have_abstract_sockets=no
|
|
|
|
GAMIN_DEPENDENCIES = libglib2
|
|
|
|
$(eval $(autotools-package))
|