9f59b378a3
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
702 B
Makefile
26 lines
702 B
Makefile
################################################################################
|
|
#
|
|
# opusfile
|
|
#
|
|
################################################################################
|
|
|
|
OPUSFILE_VERSION = 0.8
|
|
OPUSFILE_SITE = http://downloads.xiph.org/releases/opus
|
|
OPUSFILE_DEPENDENCIES = host-pkgconf libogg opus
|
|
OPUSFILE_LICENSE = BSD-3-Clause
|
|
OPUSFILE_LICENSE_FILES = COPYING
|
|
OPUSFILE_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
OPUSFILE_DEPENDENCIES += openssl
|
|
else
|
|
OPUSFILE_CONF_OPTS += --disable-http
|
|
endif
|
|
|
|
# Use the same as opus package since it's a dep and we can't mix
|
|
ifeq ($(BR2_PACKAGE_OPUS_FIXED_POINT),y)
|
|
OPUSFILE_CONF_OPTS += --enable-fixed-point
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|