blob: 1b42fdd01c5b3c4c861e952bf526f8b6dca244b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"
}
|