b32efbdb03
Remove celt051 package as celt has been merged into the IETF Opus codec and is now obsolete (see http://celt-codec.org/). The only reverse dependency of celt051 is spice. Opus support on spice has been added upstream 6 years ago with:ce9b714137
Spice disabled celt by default since version 0.14.1 and:72b0d603e1
Spice evens error out, by default, if Opus is missing but not explicitly disabeld since:f522473842
This will also fix a static build failure on spice with celt051 and opus. Fixes: - http://autobuild.buildroot.org/results/96c786f85d35f33508e9c71778043d16b87f72cd Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> [yann.morin.1998@free.fr: slight rephrasing in legacy help] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# jack2
|
|
#
|
|
################################################################################
|
|
|
|
JACK2_VERSION = 1.9.12
|
|
JACK2_SITE = $(call github,jackaudio,jack2,v$(JACK2_VERSION))
|
|
JACK2_LICENSE = GPL-2.0+ (jack server), LGPL-2.1+ (jack library)
|
|
JACK2_DEPENDENCIES = libsamplerate libsndfile alsa-lib host-python
|
|
JACK2_INSTALL_STAGING = YES
|
|
|
|
JACK2_CONF_OPTS = --alsa
|
|
|
|
ifeq ($(BR2_PACKAGE_OPUS),y)
|
|
JACK2_DEPENDENCIES += opus
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
JACK2_DEPENDENCIES += readline
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JACK2_LEGACY),y)
|
|
JACK2_CONF_OPTS += --classic
|
|
else
|
|
define JACK2_REMOVE_JACK_CONTROL
|
|
$(RM) -f $(TARGET_DIR)/usr/bin/jack_control
|
|
endef
|
|
JACK2_POST_INSTALL_TARGET_HOOKS += JACK2_REMOVE_JACK_CONTROL
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JACK2_DBUS),y)
|
|
JACK2_DEPENDENCIES += dbus
|
|
JACK2_CONF_OPTS += --dbus
|
|
endif
|
|
|
|
# The dependency against eigen is only useful in conjunction with
|
|
# gtkiostream, which we do not have, so we don't need to depend on
|
|
# eigen.
|
|
|
|
$(eval $(waf-package))
|