summaryrefslogtreecommitdiff
path: root/repo/lv2
diff options
context:
space:
mode:
Diffstat (limited to 'repo/lv2')
-rw-r--r--repo/lv2/lv2.xibuild23
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/lv2/lv2.xibuild b/repo/lv2/lv2.xibuild
new file mode 100644
index 0000000..6aec5aa
--- /dev/null
+++ b/repo/lv2/lv2.xibuild
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+NAME="lv2"
+DESC="extensible open standard for audio plugins"
+
+MAKEDEPS="python gtk2 libsndfile gcovr"
+
+PKG_VER=1.18.2
+SOURCE="http://lv2plug.in/spec/lv2-$PKG_VER.tar.bz2"
+
+build() {
+ python3 waf configure --prefix=/usr -T
+ python3 waf build
+}
+
+check() {
+ python3 waf test
+}
+
+package() {
+ python3 waf install --destdir="$PKG_DEST"
+}
+