mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 23:43:34 +08:00
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>
23 lines
785 B
Makefile
23 lines
785 B
Makefile
################################################################################
|
|
#
|
|
# madplay
|
|
#
|
|
################################################################################
|
|
|
|
MADPLAY_VERSION = 0.15.2b
|
|
MADPLAY_SITE = http://downloads.sourceforge.net/project/mad/madplay/$(MADPLAY_VERSION)
|
|
MADPLAY_LICENSE = GPL-2.0+
|
|
MADPLAY_LICENSE_FILES = COPYING COPYRIGHT
|
|
MADPLAY_LIBTOOL_PATCH = NO
|
|
MADPLAY_DEPENDENCIES = libmad libid3tag $(if $(BR2_PACKAGE_GETTEXT),gettext)
|
|
|
|
# Check if ALSA is built, then we should configure after alsa-lib so
|
|
# ./configure can find alsa-lib.
|
|
ifeq ($(BR2_PACKAGE_MADPLAY_ALSA),y)
|
|
MADPLAY_CONF_OPTS += --with-alsa
|
|
MADPLAY_DEPENDENCIES += host-pkgconf alsa-lib
|
|
MADPLAY_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs alsa`"
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|