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>
17 lines
603 B
Makefile
17 lines
603 B
Makefile
################################################################################
|
|
#
|
|
# libfm-extra
|
|
#
|
|
################################################################################
|
|
|
|
LIBFM_EXTRA_VERSION = 1.2.4
|
|
LIBFM_EXTRA_SOURCE = libfm-$(LIBFM_EXTRA_VERSION).tar.xz
|
|
LIBFM_EXTRA_SITE = http://sourceforge.net/projects/pcmanfm/files
|
|
LIBFM_EXTRA_DEPENDENCIES = libglib2 host-intltool
|
|
LIBFM_EXTRA_LICENSE = GPL-2.0+, LGPLv2.1+
|
|
LIBFM_EXTRA_LICENSE_FILES = COPYING src/extra/fm-xml-file.c
|
|
LIBFM_EXTRA_INSTALL_STAGING = YES
|
|
LIBFM_EXTRA_CONF_OPTS = --with-extra-only --with-gtk=no
|
|
|
|
$(eval $(autotools-package))
|