diff options
Diffstat (limited to 'repo/lilv/lilv.xibuild')
-rw-r--r-- | repo/lilv/lilv.xibuild | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/lilv/lilv.xibuild b/repo/lilv/lilv.xibuild new file mode 100644 index 0000000..ef523c1 --- /dev/null +++ b/repo/lilv/lilv.xibuild @@ -0,0 +1,19 @@ +#!/bin/sh + +NAME="lilv" +DESC="C library for simpler use of LV2 plugins" + +MAKEDEPS="lv2 python serd libsndfile sord sratom" + +PKG_VER=0.24.12 +SOURCE="http://download.drobilla.net/lilv-$PKG_VER.tar.bz2" + +build() { + python3 waf configure --prefix=/usr + python3 waf build +} + +package() { + python3 waf install --destdir="$PKG_DEST" +} + |