337aa51f3f
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for GPLv3/GPLv3+ is GPL-3.0/GPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv3\>/GPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
795 B
Makefile
21 lines
795 B
Makefile
################################################################################
|
|
#
|
|
# modplugtools
|
|
#
|
|
################################################################################
|
|
|
|
MODPLUGTOOLS_VERSION = 0.5.3
|
|
MODPLUGTOOLS_SITE = http://downloads.sourceforge.net/project/modplug-xmms/modplug-tools
|
|
MODPLUGTOOLS_LICENSE = GPL-3.0
|
|
MODPLUGTOOLS_LICENSE_FILES = COPYING
|
|
|
|
MODPLUGTOOLS_DEPENDENCIES = libao libmodplug
|
|
|
|
# Only build the 'mp123' subdir, which contains 'modplug123' that plays through
|
|
# various backends via libao. This excludes the 'mpplay' subdir, which contains
|
|
# 'modplugplay' that can play only through the deprecated OSS interface.
|
|
MODPLUGTOOLS_MAKE_OPTS = SUBDIRS=mp123
|
|
MODPLUGTOOLS_INSTALL_TARGET_OPTS = SUBDIRS=mp123 DESTDIR=$(TARGET_DIR) install
|
|
|
|
$(eval $(autotools-package))
|