summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sands <david.sands3@gmail.com>2024-11-18 11:44:59 +1000
committerKhem Raj <raj.khem@gmail.com>2024-11-19 16:59:11 -0800
commit608f9aab51ed063799898b0e37c20e89acaa57c3 (patch)
treea8d8dbaf1d6db718b0c700f9fe02c324a1df6b0f
parente8ad9b41dd3e4d84e885a6e36a61d0a2c2a1d80c (diff)
downloadmeta-openembedded-608f9aab51ed063799898b0e37c20e89acaa57c3.tar.gz
jack-example-tools: add new recipe
This commit adds a package that provides jack-utils (along with jack example clients) that are broken out from the main jack repo since jack v1.9.22 Signed-off-by: David Sands <david.sands3@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-multimedia/jack/jack-example-tools_4.bb34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/jack/jack-example-tools_4.bb b/meta-oe/recipes-multimedia/jack/jack-example-tools_4.bb
new file mode 100644
index 0000000000..a868a2969d
--- /dev/null
+++ b/meta-oe/recipes-multimedia/jack/jack-example-tools_4.bb
@@ -0,0 +1,34 @@
1DESCRIPTION = "JACK example tools and clients"
2SECTION = "libs/multimedia"
3
4LICENSE = "GPL-2.0-or-later"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=4641e94ec96f98fabc56ff9cc48be14b"
6
7DEPENDS = "jack"
8
9SRC_URI = "git://github.com/jackaudio/jack-example-tools.git;branch=main;protocol=https"
10SRCREV = "33de8b4285fa5054af1b37fe0496c110604ed564"
11
12S = "${WORKDIR}/git"
13
14inherit meson pkgconfig
15
16PACKAGECONFIG ??= "alsa_in_out jack_rec"
17PACKAGECONFIG[alsa_in_out] = ",-Dalsa_in_out=disabled,alsa-lib"
18PACKAGECONFIG[jack_net] = ",-Djack_net=disabled"
19PACKAGECONFIG[jack_netsource] = ",-Djack_netsource=disabled,libopus"
20PACKAGECONFIG[jack_rec] = ",-Djack_rec=disabled"
21PACKAGECONFIG[opus_support] = ",-Dopus_support=disabled,libopus"
22PACKAGECONFIG[readline] = ",-Dreadline_support=disabled,readline"
23
24# ZALSA requires packages that are not available (libzita-alsa-pcmi and libzita-resampler)
25EXTRA_OECONF = "-Dzalsa=disabled"
26
27# jack recipe previously packaged jack-utils when these were part of the jack2 repository
28# keep using jack-utils package name to provide compatibility with old image recipes
29PACKAGES =+ "jack-utils"
30
31FILES:jack-utils = " \
32 ${bindir}/* \
33 ${libdir}/jack/*.so \
34"