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>
17 lines
550 B
Makefile
17 lines
550 B
Makefile
################################################################################
|
|
#
|
|
# gupnp
|
|
#
|
|
################################################################################
|
|
|
|
GUPNP_VERSION_MAJOR = 1.0
|
|
GUPNP_VERSION = $(GUPNP_VERSION_MAJOR).1
|
|
GUPNP_SOURCE = gupnp-$(GUPNP_VERSION).tar.xz
|
|
GUPNP_SITE = http://ftp.gnome.org/pub/gnome/sources/gupnp/$(GUPNP_VERSION_MAJOR)
|
|
GUPNP_LICENSE = LGPL-2.0+
|
|
GUPNP_LICENSE_FILES = COPYING
|
|
GUPNP_INSTALL_STAGING = YES
|
|
GUPNP_DEPENDENCIES = host-pkgconf libglib2 libxml2 gssdp util-linux
|
|
|
|
$(eval $(autotools-package))
|