package/multimedia: move audio libraries out

Move audio libraries out of the Audio and Video category into the
Libraries/Audio one.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Gustavo Zacarias
2012-04-30 03:48:16 +00:00
committed by Peter Korsgaard
parent 84d589a963
commit 5d6f32878f
43 changed files with 20 additions and 17 deletions

7
package/libao/Config.in Normal file
View File

@@ -0,0 +1,7 @@
config BR2_PACKAGE_LIBAO
bool "libao"
help
Libao is a cross-platform audio library that allows programs
to output audio using a simple API on a wide variety of platforms.
http://www.xiph.org/ao/

21
package/libao/libao.mk Normal file
View File

@@ -0,0 +1,21 @@
#############################################################
#
# libao
#
#############################################################
LIBAO_VERSION = 1.1.0
LIBAO_SITE = http://downloads.xiph.org/releases/ao
LIBAO_DEPENDENCIES = host-pkg-config
LIBAO_INSTALL_STAGING = YES
LIBAO_CONF_OPT = --disable-esd --disable-wmm --disable-arts \
--disable-nas --disable-pulse
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
LIBAO_DEPENDENCIES += alsa-lib
LIBAO_CONF_OPT += --enable-alsa --enable-alsa-mmap
else
LIBAO_CONF_OPT += --disable-alsa
endif
$(eval $(call AUTOTARGETS))