a2bd599074
jack2 installs some headers and libraries that can be used by other applications, so it makes sense to install it to the staging directory. Signed-off-by: Pieter De Gendt <pieter.degendt@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
37 lines
994 B
Makefile
37 lines
994 B
Makefile
################################################################################
|
|
#
|
|
# jack2
|
|
#
|
|
################################################################################
|
|
|
|
JACK2_VERSION = ab409a65df95bc261ff72b52d6b3f4a65cf3266a
|
|
JACK2_SITE = $(call github,jackaudio,jack2,$(JACK2_VERSION))
|
|
JACK2_LICENSE = GPLv2+ (jack server), LGPLv2.1+ (jack library)
|
|
JACK2_DEPENDENCIES = libsamplerate libsndfile alsa-lib host-python
|
|
JACK2_INSTALL_STAGING = YES
|
|
|
|
define JACK2_CONFIGURE_CMDS
|
|
(cd $(@D); \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(HOST_DIR)/usr/bin/python2 ./waf configure \
|
|
--prefix=/usr \
|
|
--alsa \
|
|
)
|
|
endef
|
|
|
|
define JACK2_BUILD_CMDS
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python2 ./waf build -j $(PARALLEL_JOBS))
|
|
endef
|
|
|
|
define JACK2_INSTALL_TARGET_CMDS
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python2 ./waf --destdir=$(TARGET_DIR) \
|
|
install)
|
|
endef
|
|
|
|
define JACK2_INSTALL_STAGING_CMDS
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python2 ./waf --destdir=$(STAGING_DIR) \
|
|
install)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|