summaryrefslogtreecommitdiff
path: root/repo/jack/jack.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/jack/jack.xibuild')
-rw-r--r--repo/jack/jack.xibuild34
1 files changed, 34 insertions, 0 deletions
diff --git a/repo/jack/jack.xibuild b/repo/jack/jack.xibuild
new file mode 100644
index 0000000..04ad8c0
--- /dev/null
+++ b/repo/jack/jack.xibuild
@@ -0,0 +1,34 @@
+#!/bin/sh
+
+NAME="jack"
+DESC="The Jack Audio Connection Kit"
+
+MAKEDEPS="alsa-lib dbus expat libsamplerate libsndfile ncurses readline python linux-headers"
+
+PKG_VER=1.9.20
+SOURCE="https://github.com/jackaudio/jack2/archive/v$PKG_VER/jack2-v$PKG_VER.tar.gz"
+
+ADDITIONAL="
+fix-execinfo.patch
+increase-api-version.patch
+"
+prepare () {
+ apply_patches
+}
+
+build() {
+ ./waf configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man/man1 \
+ --libdir=/usr/lib \
+ --dbus \
+ --alsa \
+ --classic
+
+ ./waf build -v
+}
+
+package() {
+ ./waf --destdir="$PKG_DEST" install
+}
+