1################################################################################ 2# 3# vorbis-tools 4# 5################################################################################ 6 7VORBIS_TOOLS_VERSION = 1.4.2 8VORBIS_TOOLS_SITE = http://downloads.xiph.org/releases/vorbis 9VORBIS_TOOLS_LICENSE = GPL-2.0 10VORBIS_TOOLS_LICENSE_FILES = COPYING 11VORBIS_TOOLS_CPE_ID_VENDOR = xiph 12VORBIS_TOOLS_DEPENDENCIES = libao libogg libvorbis libcurl 13VORBIS_TOOLS_CONF_OPTS = --program-transform-name='' 14 15# ogg123 calls math functions but forgets to link with libm 16VORBIS_TOOLS_CONF_ENV = LIBS=-lm 17 18ifeq ($(BR2_PACKAGE_FLAC),y) 19VORBIS_TOOLS_DEPENDENCIES += flac 20endif 21 22ifeq ($(BR2_PACKAGE_OPUSFILE),y) 23VORBIS_TOOLS_DEPENDENCIES += opusfile 24endif 25 26ifeq ($(BR2_PACKAGE_SPEEX),y) 27VORBIS_TOOLS_DEPENDENCIES += speex 28endif 29 30$(eval $(autotools-package)) 31