aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
774 B
Makefile
31 lines
774 B
Makefile
################################################################################
|
|
#
|
|
# opus-tools
|
|
#
|
|
################################################################################
|
|
|
|
OPUS_TOOLS_VERSION = 0.1.9
|
|
OPUS_TOOLS_SITE = http://downloads.xiph.org/releases/opus
|
|
OPUS_TOOLS_LICENSE = BSD-2c
|
|
OPUS_TOOLS_LICENSE_FILES = COPYING
|
|
OPUS_TOOLS_CONF_OPTS = --disable-oggtest --disable-opustest
|
|
OPUS_TOOLS_DEPENDENCIES = opus libogg host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPCAP),y)
|
|
OPUS_TOOLS_DEPENDENCIES += libpcap
|
|
endif
|
|
|
|
ifeq ($(BR2_X86_CPU_HAS_SSE),y)
|
|
OPUS_TOOLS_CONF_OPTS += --enable-sse
|
|
else
|
|
OPUS_TOOLS_CONF_OPTS += --disable-sse
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_FLAC),y)
|
|
OPUS_TOOLS_DEPENDENCIES += flac
|
|
else
|
|
OPUS_TOOLS_CONF_OPTS += --without-flac
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|