30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/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+, LGPL-2.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))
|