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