Move all to deprecated folder.
This commit is contained in:
7
deprecated/firmware/buildroot/package/libao/Config.in
Normal file
7
deprecated/firmware/buildroot/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/
|
||||
2
deprecated/firmware/buildroot/package/libao/libao.hash
Normal file
2
deprecated/firmware/buildroot/package/libao/libao.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From http://downloads.xiph.org/releases/ao/SHA256SUMS.txt
|
||||
sha256 03ad231ad1f9d64b52474392d63c31197b0bc7bd416e58b1c10a329a5ed89caf libao-1.2.0.tar.gz
|
||||
34
deprecated/firmware/buildroot/package/libao/libao.mk
Normal file
34
deprecated/firmware/buildroot/package/libao/libao.mk
Normal file
@@ -0,0 +1,34 @@
|
||||
################################################################################
|
||||
#
|
||||
# libao
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBAO_VERSION = 1.2.0
|
||||
LIBAO_SITE = http://downloads.xiph.org/releases/ao
|
||||
LIBAO_DEPENDENCIES = host-pkgconf
|
||||
LIBAO_INSTALL_STAGING = YES
|
||||
LIBAO_LICENSE = GPLv2+
|
||||
LIBAO_LICENSE_FILES = COPYING
|
||||
LIBAO_CONF_OPTS = \
|
||||
--disable-esd \
|
||||
--disable-wmm \
|
||||
--disable-arts \
|
||||
--disable-nas \
|
||||
--disable-pulse \
|
||||
--disable-broken-oss
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
||||
LIBAO_DEPENDENCIES += alsa-lib
|
||||
LIBAO_CONF_OPTS += --enable-alsa --enable-alsa-mmap
|
||||
|
||||
# Remove the OSS plugin if ALSA is enabled, as libao will prefer ALSA anyway
|
||||
define LIBAO_REMOVE_OSS_PLUGIN
|
||||
rm -f $(TARGET_DIR)/usr/lib/ao/plugins-4/liboss.so
|
||||
endef
|
||||
LIBAO_POST_INSTALL_TARGET_HOOKS += LIBAO_REMOVE_OSS_PLUGIN
|
||||
else
|
||||
LIBAO_CONF_OPTS += --disable-alsa
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user