kumquat-buildroot/package/opusfile/opusfile.mk
Thomas Petazzoni dbc97c0e46 opusfile: supports only the real OpenSSL, not LibreSSL
opusfile will not build with LibreSSL without patches, so let's
support only OpenSSL.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-10-21 21:28:13 +02:00

26 lines
709 B
Makefile

################################################################################
#
# opusfile
#
################################################################################
OPUSFILE_VERSION = 0.9
OPUSFILE_SITE = https://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_LIBOPENSSL),y)
OPUSFILE_DEPENDENCIES += libopenssl
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))