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