2013-10-30 16:46:01 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# jack2
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2014-10-26 19:45:54 +01:00
|
|
|
JACK2_VERSION = v1.9.10
|
2013-10-30 16:46:01 +01:00
|
|
|
JACK2_SITE = $(call github,jackaudio,jack2,$(JACK2_VERSION))
|
|
|
|
JACK2_LICENSE = GPLv2+ (jack server), LGPLv2.1+ (jack library)
|
2014-05-14 12:46:16 +02:00
|
|
|
JACK2_DEPENDENCIES = libsamplerate libsndfile alsa-lib host-python
|
2014-08-06 13:40:36 +02:00
|
|
|
JACK2_INSTALL_STAGING = YES
|
2013-10-30 16:46:01 +01:00
|
|
|
|
2016-02-21 10:50:17 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_OPUS),y)
|
|
|
|
JACK2_DEPENDENCIES += opus
|
|
|
|
endif
|
|
|
|
|
2016-02-21 10:50:18 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
|
|
JACK2_DEPENDENCIES += readline
|
|
|
|
endif
|
|
|
|
|
2016-03-11 19:00:34 +01:00
|
|
|
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
|
|
|
|
|
2016-03-11 19:00:35 +01:00
|
|
|
# Even though it advertises support for celt-0.5.x, jack2 really
|
|
|
|
# requires celt >= 0.5.2 but we only have 0.5.1.3 and we cannot
|
|
|
|
# upgrade, so we do not add a dependency to celt051, which it can't
|
|
|
|
# find anyway as it looks for celt.pc but we only have celt-51.pc.
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
2013-10-30 16:46:01 +01:00
|
|
|
define JACK2_CONFIGURE_CMDS
|
|
|
|
(cd $(@D); \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2014-05-14 12:46:16 +02:00
|
|
|
$(HOST_DIR)/usr/bin/python2 ./waf configure \
|
2013-10-30 16:46:01 +01:00
|
|
|
--prefix=/usr \
|
2014-05-14 12:46:16 +02:00
|
|
|
--alsa \
|
2016-03-11 19:00:34 +01:00
|
|
|
$(JACK2_CONF_OPTS) \
|
2014-05-14 12:46:16 +02:00
|
|
|
)
|
2013-10-30 16:46:01 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define JACK2_BUILD_CMDS
|
2014-05-14 12:46:16 +02:00
|
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python2 ./waf build -j $(PARALLEL_JOBS))
|
2013-10-30 16:46:01 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define JACK2_INSTALL_TARGET_CMDS
|
2014-05-14 12:46:16 +02:00
|
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python2 ./waf --destdir=$(TARGET_DIR) \
|
|
|
|
install)
|
2013-10-30 16:46:01 +01:00
|
|
|
endef
|
|
|
|
|
2014-08-06 13:40:36 +02:00
|
|
|
define JACK2_INSTALL_STAGING_CMDS
|
|
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python2 ./waf --destdir=$(STAGING_DIR) \
|
|
|
|
install)
|
|
|
|
endef
|
|
|
|
|
2013-10-30 16:46:01 +01:00
|
|
|
$(eval $(generic-package))
|