2015-02-25 14:06:25 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# opusfile
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-06-07 15:39:31 +02:00
|
|
|
OPUSFILE_VERSION = 0.10
|
2017-08-30 21:28:52 +02:00
|
|
|
OPUSFILE_SITE = https://downloads.xiph.org/releases/opus
|
2015-02-25 14:06:25 +01:00
|
|
|
OPUSFILE_DEPENDENCIES = host-pkgconf libogg opus
|
2017-03-30 15:43:38 +02:00
|
|
|
OPUSFILE_LICENSE = BSD-3-Clause
|
2015-02-25 14:06:25 +01:00
|
|
|
OPUSFILE_LICENSE_FILES = COPYING
|
|
|
|
OPUSFILE_INSTALL_STAGING = YES
|
|
|
|
|
2018-04-02 13:58:28 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
|
|
OPUSFILE_DEPENDENCIES += openssl
|
2015-02-25 14:06:25 +01:00
|
|
|
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))
|