9254f02266
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2/LGPLv2+ is LGPL-2.0/LGPL-2.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2(\+)?/LGPL-2.0\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
39 lines
951 B
Makefile
39 lines
951 B
Makefile
################################################################################
|
|
#
|
|
# libshout
|
|
#
|
|
################################################################################
|
|
|
|
LIBSHOUT_VERSION = 2.4.1
|
|
LIBSHOUT_SITE = http://downloads.xiph.org/releases/libshout
|
|
LIBSHOUT_LICENSE = LGPL-2.0+
|
|
LIBSHOUT_LICENSE_FILES = COPYING
|
|
LIBSHOUT_INSTALL_STAGING = YES
|
|
LIBSHOUT_DEPENDENCIES = host-pkgconf libogg libvorbis
|
|
|
|
# patching configure.ac
|
|
LIBSHOUT_AUTORECONF = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBTHEORA),y)
|
|
LIBSHOUT_CONF_OPTS += --enable-theora
|
|
LIBSHOUT_DEPENDENCIES += libtheora
|
|
else
|
|
LIBSHOUT_CONF_OPTS += --disable-theora
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SPEEX),y)
|
|
LIBSHOUT_CONF_OPTS += --enable-speex
|
|
LIBSHOUT_DEPENDENCIES += speex
|
|
else
|
|
LIBSHOUT_CONF_OPTS += --disable-speex
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LIBSHOUT_CONF_OPTS += --with-openssl
|
|
LIBSHOUT_DEPENDENCIES += openssl
|
|
else
|
|
LIBSHOUT_CONF_OPTS += --without-openssl
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|