1################################################################################ 2# 3# libshout 4# 5################################################################################ 6 7LIBSHOUT_VERSION = 2.4.5 8LIBSHOUT_SITE = https://downloads.xiph.org/releases/libshout 9LIBSHOUT_LICENSE = LGPL-2.0+ 10LIBSHOUT_LICENSE_FILES = COPYING 11LIBSHOUT_INSTALL_STAGING = YES 12LIBSHOUT_DEPENDENCIES = host-pkgconf libogg libvorbis 13# We're patching configure.ac 14LIBSHOUT_AUTORECONF = YES 15LIBSHOUT_CONF_OPTS = \ 16 --disable-examples \ 17 --disable-tools 18 19ifeq ($(BR2_PACKAGE_LIBTHEORA),y) 20LIBSHOUT_CONF_OPTS += --enable-theora 21LIBSHOUT_DEPENDENCIES += libtheora 22else 23LIBSHOUT_CONF_OPTS += --disable-theora 24endif 25 26ifeq ($(BR2_PACKAGE_SPEEX),y) 27LIBSHOUT_CONF_OPTS += --enable-speex 28LIBSHOUT_DEPENDENCIES += speex 29else 30LIBSHOUT_CONF_OPTS += --disable-speex 31endif 32 33ifeq ($(BR2_PACKAGE_OPENSSL),y) 34LIBSHOUT_CONF_OPTS += --with-openssl 35LIBSHOUT_DEPENDENCIES += openssl 36else 37LIBSHOUT_CONF_OPTS += --without-openssl 38endif 39 40$(eval $(autotools-package)) 41