mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
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:
committed by
Peter Korsgaard
parent
84d589a963
commit
5d6f32878f
7
package/libao/Config.in
Normal file
7
package/libao/Config.in
Normal 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
21
package/libao/libao.mk
Normal 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))
|
||||
Reference in New Issue
Block a user