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>
26 lines
755 B
Makefile
26 lines
755 B
Makefile
################################################################################
|
|
#
|
|
# audiofile
|
|
#
|
|
################################################################################
|
|
|
|
AUDIOFILE_VERSION = 0.3.6
|
|
AUDIOFILE_SITE = http://audiofile.68k.org
|
|
AUDIOFILE_INSTALL_STAGING = YES
|
|
AUDIOFILE_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
|
|
AUDIOFILE_CONF_OPTS = --disable-examples
|
|
AUDIOFILE_DEPENDENCIES = host-pkgconf
|
|
# configure is outdated and has old bugs because of it
|
|
AUDIOFILE_AUTORECONF = YES
|
|
AUDIOFILE_LICENSE = GPL-2.0+, LGPL-2.1+
|
|
AUDIOFILE_LICENSE_FILES = COPYING COPYING.GPL
|
|
|
|
ifeq ($(BR2_PACKAGE_FLAC),y)
|
|
AUDIOFILE_DEPENDENCIES += flac
|
|
AUDIOFILE_CONF_OPTS += --enable-flac
|
|
else
|
|
AUDIOFILE_CONF_OPTS += --disable-flac
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|