mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 20:51:57 +02:00
removed patch was merged
1.9.17
Fix jack_control stopping after first command iteration
Fix library compat/current version under macOS
Fix return codes of jackd on success
Ignore DB_VERSION_MISMATCH error on windows, it is expected
Remove old workaround for asio4all, as it breaks with jack-router
External changes, related to macOS/Windows installer:
Add jack-router to Windows installer, opt-in
Fix registry keys for Windows, add 32bit compat ones on 64bit
Support for arm64 macOS builds
Show welcome and license pages on windows installer
Update QjackCtl used in macOS/Windows installers to v0.9.0, with some commits cherry-picked from develop branch
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
54 lines
1.7 KiB
BlitzBasic
54 lines
1.7 KiB
BlitzBasic
DESCRIPTION = "jackdmp is a C++ version of the JACK low-latency audio \
|
|
server for multi-processor machines. It is a new implementation of the \
|
|
JACK server core features that aims in removing some limitations of \
|
|
the JACK1 design. The activation system has been changed for a data \
|
|
flow model and lock-free programming techniques for graph access have \
|
|
been used to have a more dynamic and robust system."
|
|
SECTION = "libs/multimedia"
|
|
|
|
LICENSE = "GPLv2 & LGPLv2.1"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://common/jack/control.h;beginline=2;endline=21;md5=e6df0bf30cde8b3b825451459488195d \
|
|
file://common/jack/jack.h;beginline=1;endline=19;md5=6b736ed6b810592b135480a5e853392e \
|
|
"
|
|
|
|
DEPENDS = "libsamplerate0 libsndfile1 readline"
|
|
|
|
SRC_URI = "git://github.com/jackaudio/jack2.git \
|
|
file://0001-example-clients-Use-c-compiler-for-jack_simdtests.patch \
|
|
"
|
|
SRCREV = "9e23888b8def6527774889cf4ef6348fb78c7154"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit waf pkgconfig
|
|
|
|
PACKAGECONFIG ??= "alsa"
|
|
PACKAGECONFIG[alsa] = "--alsa=yes,--alsa=no,alsa-lib"
|
|
# --dbus only stops building jackd -> add --classic
|
|
PACKAGECONFIG[dbus] = "--dbus --classic,,dbus"
|
|
PACKAGECONFIG[opus] = "--opus=yes,--opus=no,libopus"
|
|
|
|
# portaudio is for windows builds only
|
|
EXTRA_OECONF = "--portaudio=no"
|
|
|
|
do_install_append() {
|
|
if ! ${@bb.utils.contains('PACKAGECONFIG', 'dbus', True, False, d)}; then
|
|
rm -f ${D}${bindir}/jack_control
|
|
fi
|
|
}
|
|
|
|
PACKAGES =+ "libjack jack-server jack-utils"
|
|
|
|
RDEPENDS_jack-dev_remove = "${PN} (= ${EXTENDPKGV})"
|
|
|
|
FILES_libjack = "${libdir}/*.so.* ${libdir}/jack/*.so"
|
|
FILES_jack-server = " \
|
|
${datadir}/dbus-1/services \
|
|
${bindir}/jackdbus \
|
|
${bindir}/jackd \
|
|
"
|
|
FILES_jack-utils = "${bindir}/*"
|
|
|
|
FILES_${PN}-doc += " ${datadir}/jack-audio-connection-kit/reference/html/*"
|