summaryrefslogtreecommitdiff
path: root/repo/lv2/lv2.xibuild
blob: 1ec3d7e741a33066d3205fe01d61eed7ec5b2f48 (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="lv2"
DESC="extensible open standard for audio plugins"

MAKEDEPS="python gtk2 libsndfile gcovr"

PKG_VER=1.18.10
SOURCE="https://gitlab.com/lv2/lv2/-/archive/v$PKG_VER/lv2-v$PKG_VER.tar.gz"

build() {
	python3 waf configure --prefix=/usr -T
	python3 waf build
}

check() {
	python3 waf test
}

package() {
	python3 waf install --destdir="$PKG_DEST"
}