package/alsa-plugins: new package
During testing of bluez-alsa in particular, there is no compilation dependency - but, some configurations will request the load of a particular plugin: ALSA lib dlmisc.c:337:(snd_dlobj_cache_get0) \ Cannot open shared library libasound_module_rate_samplerate_best.so \ (/usr/lib/alsa-lib/libasound_module_rate_samplerate_best.so: \ cannot open shared object file: No such file or directory) Adding in the alsa-plugins package allows to build build the appropriate plugins. Signed-off-by: Charles Hardin <ckhardin@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
af19131543
commit
e85bde9cc6
@ -498,6 +498,9 @@ F: package/libsvg-cairo/
|
||||
N: Cédric Chépied <cedric.chepied@gmail.com>
|
||||
F: package/znc/
|
||||
|
||||
N: Charles Hardin <ckhardin@gmail.com>
|
||||
F: package/alsa-plugins/
|
||||
|
||||
N: Chris Packham <judge.packham@gmail.com>
|
||||
F: package/coremark/
|
||||
F: package/coremark-pro/
|
||||
|
@ -1297,6 +1297,7 @@ menu "Libraries"
|
||||
|
||||
menu "Audio/Sound"
|
||||
source "package/alsa-lib/Config.in"
|
||||
source "package/alsa-plugins/Config.in"
|
||||
source "package/alure/Config.in"
|
||||
source "package/aubio/Config.in"
|
||||
source "package/bcg729/Config.in"
|
||||
|
8
package/alsa-plugins/Config.in
Normal file
8
package/alsa-plugins/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_ALSA_PLUGINS
|
||||
bool "alsa-plugins"
|
||||
depends on BR2_PACKAGE_ALSA_LIB
|
||||
select BR2_PACKAGE_ALSA_LIB_HWDEP
|
||||
help
|
||||
Advanced Linux Sound Architecture Plugins
|
||||
|
||||
http://www.alsa-project.org/
|
4
package/alsa-plugins/alsa-plugins.hash
Normal file
4
package/alsa-plugins/alsa-plugins.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# Locally calculated
|
||||
sha256 42eef98433d2c8d11f1deeeb459643619215a75aa5a5bbdd06a794e4c413df20 alsa-plugins-1.2.5.tar.bz2
|
||||
sha256 32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b COPYING
|
||||
sha256 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c COPYING.GPL
|
32
package/alsa-plugins/alsa-plugins.mk
Normal file
32
package/alsa-plugins/alsa-plugins.mk
Normal file
@ -0,0 +1,32 @@
|
||||
################################################################################
|
||||
#
|
||||
# alsa-plugins
|
||||
#
|
||||
################################################################################
|
||||
|
||||
ALSA_PLUGINS_VERSION = 1.2.5
|
||||
ALSA_PLUGINS_SOURCE = alsa-plugins-$(ALSA_PLUGINS_VERSION).tar.bz2
|
||||
ALSA_PLUGINS_SITE = https://www.alsa-project.org/files/pub/plugins
|
||||
ALSA_PLUGINS_LICENSE = LGPL-2.1+
|
||||
ALSA_PLUGINS_LICENSE_FILES = COPYING
|
||||
ALSA_PLUGINS_DEPENDENCIES = host-pkgconf alsa-lib
|
||||
|
||||
ALSA_PLUGINS_CONF_OPTS = \
|
||||
--disable-jack \
|
||||
--disable-usbstream \
|
||||
--disable-pulseaudio \
|
||||
--disable-libav \
|
||||
--disable-maemo-plugin \
|
||||
--disable-maemo-resource-manager \
|
||||
--with-speex=no
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSAMPLERATE),y)
|
||||
ALSA_PLUGINS_CONF_OPTS += --enable-samplerate
|
||||
ALSA_PLUGINS_DEPENDENCIES += libsamplerate
|
||||
ALSA_PLUGINS_LICENSE += , GPL-2.0+ (samplerate plugin)
|
||||
ALSA_PLUGINS_LICENSE_FILES += COPYING.GPL
|
||||
else
|
||||
ALSA_PLUGINS_CONF_OPTS += --disable-samplerate
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user