af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
646 B
Makefile
19 lines
646 B
Makefile
################################################################################
|
|
#
|
|
# gmpc
|
|
#
|
|
################################################################################
|
|
|
|
GMPC_VERSION = 11.8.16
|
|
GMPC_SITE = http://download.sarine.nl/Programs/gmpc/$(GMPC_VERSION)
|
|
GMPC_CONF_ENV = ac_cv_path_GOB2=$(GOB2_HOST_BINARY)
|
|
GMPC_CONF_OPTS = --disable-mmkeys --disable-unique
|
|
GMPC_LICENSE = GPL-2.0+
|
|
GMPC_LICENSE_FILES = COPYING
|
|
GMPC_DEPENDENCIES = host-gob2 host-intltool host-pkgconf host-vala \
|
|
libglib2 libgtk2 libmpd libsoup sqlite \
|
|
xlib_libICE xlib_libSM xlib_libX11 \
|
|
$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
|
|
|
|
$(eval $(autotools-package))
|