9597126a3d
Changelog: https://www.alsa-project.org/wiki/Changes_v1.2.7_v1.2.7.1#alsa-plugins Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
33 lines
971 B
Makefile
33 lines
971 B
Makefile
################################################################################
|
|
#
|
|
# alsa-plugins
|
|
#
|
|
################################################################################
|
|
|
|
ALSA_PLUGINS_VERSION = 1.2.7.1
|
|
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))
|