vorbis-tools: new package

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Gustavo Zacarias 2011-01-06 15:42:01 -03:00 committed by Peter Korsgaard
parent 7f81642675
commit d0f607c47a
3 changed files with 33 additions and 0 deletions

View file

@ -32,4 +32,5 @@ source "package/multimedia/festival/Config.in"
source "package/multimedia/taglib/Config.in"
source "package/multimedia/tremor/Config.in"
source "package/multimedia/vlc/Config.in"
source "package/multimedia/vorbis-tools/Config.in"
endmenu

View file

@ -0,0 +1,12 @@
config BR2_PACKAGE_VORBIS_TOOLS
bool "vorbis-tools"
select BR2_PACKAGE_LIBAO
select BR2_PACKAGE_LIBOGG
select BR2_PACKAGE_LIBVORBIS
select BR2_PACKAGE_LIBCURL
help
Standalone player, encoder and decoder for Ogg format files.
Works also as a streaming player.
http://www.vorbis.com/

View file

@ -0,0 +1,20 @@
#############################################################
#
# vorbis-tools
#
#############################################################
VORBIS_TOOLS_VERSION = 1.4.0
VORBIS_TOOLS_SITE = http://downloads.xiph.org/releases/vorbis
VORBIS_TOOLS_DEPENDENCIES = libao libogg libvorbis libcurl
VORBIS_TOOLS_CONF_OPT = --program-transform-name=''
ifeq ($(BR2_PACKAGE_FLAC),y)
VORBIS_TOOLS_DEPENDENCIES += flac
endif
ifeq ($(BR2_PACKAGE_SPEEX),y)
VORBIS_TOOLS_DEPENDENCIES += speex
endif
$(eval $(call AUTOTARGETS,package/multimedia,vorbis-tools))