blob: 23343056e1715dd60ff3ff00f6a5ff97042439a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
NAME="sord"
DESC="C library for storing RDF data in memory"
MAKEDEPS="python pcre serd"
PKG_VER=0.16.8
SOURCE="http://download.drobilla.net/sord-$PKG_VER.tar.bz2"
build() {
python3 waf configure --prefix=/usr --test
python3 waf build
}
check() {
python3 waf test
}
package() {
python3 waf install --destdir="$PKG_DEST"
}
|