summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-multimedia/jack/jack_1.19.17.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-multimedia/jack/jack_1.19.17.bb')
-rw-r--r--meta-oe/recipes-multimedia/jack/jack_1.19.17.bb53
1 files changed, 53 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/jack/jack_1.19.17.bb b/meta-oe/recipes-multimedia/jack/jack_1.19.17.bb
new file mode 100644
index 0000000000..d5288c7b71
--- /dev/null
+++ b/meta-oe/recipes-multimedia/jack/jack_1.19.17.bb
@@ -0,0 +1,53 @@
1DESCRIPTION = "jackdmp is a C++ version of the JACK low-latency audio \
2server for multi-processor machines. It is a new implementation of the \
3JACK server core features that aims in removing some limitations of \
4the JACK1 design. The activation system has been changed for a data \
5flow model and lock-free programming techniques for graph access have \
6been used to have a more dynamic and robust system."
7SECTION = "libs/multimedia"
8
9LICENSE = "GPLv2 & LGPLv2.1"
10LIC_FILES_CHKSUM = " \
11 file://common/jack/control.h;beginline=2;endline=21;md5=e6df0bf30cde8b3b825451459488195d \
12 file://common/jack/jack.h;beginline=1;endline=19;md5=6b736ed6b810592b135480a5e853392e \
13"
14
15DEPENDS = "libsamplerate0 libsndfile1 readline"
16
17SRC_URI = "git://github.com/jackaudio/jack2.git \
18 file://0001-example-clients-Use-c-compiler-for-jack_simdtests.patch \
19 "
20SRCREV = "9e23888b8def6527774889cf4ef6348fb78c7154"
21
22S = "${WORKDIR}/git"
23
24inherit waf pkgconfig
25
26PACKAGECONFIG ??= "alsa"
27PACKAGECONFIG[alsa] = "--alsa=yes,--alsa=no,alsa-lib"
28# --dbus only stops building jackd -> add --classic
29PACKAGECONFIG[dbus] = "--dbus --classic,,dbus"
30PACKAGECONFIG[opus] = "--opus=yes,--opus=no,libopus"
31
32# portaudio is for windows builds only
33EXTRA_OECONF = "--portaudio=no"
34
35do_install_append() {
36 if ! ${@bb.utils.contains('PACKAGECONFIG', 'dbus', True, False, d)}; then
37 rm -f ${D}${bindir}/jack_control
38 fi
39}
40
41PACKAGES =+ "libjack jack-server jack-utils"
42
43RDEPENDS_jack-dev_remove = "${PN} (= ${EXTENDPKGV})"
44
45FILES_libjack = "${libdir}/*.so.* ${libdir}/jack/*.so"
46FILES_jack-server = " \
47 ${datadir}/dbus-1/services \
48 ${bindir}/jackdbus \
49 ${bindir}/jackd \
50"
51FILES_jack-utils = "${bindir}/*"
52
53FILES_${PN}-doc += " ${datadir}/jack-audio-connection-kit/reference/html/*"