blob: d9bc3b40cbb3a2a78bee6fc623320d6fe293f7e0 (
plain)
1 # Description: MDA VST plugins to LV2
2 # URL: https://git.drobilla.net/cgit.cgi/mda.lv2.git/about/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: lv2
5
6 name=mda.lv2
7 version=1.2.2
8 release=1
9 source=(https://git.drobilla.net/cgit.cgi/${name}.git/snapshot/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./waf configure --prefix=/usr
14 ./waf
15 ./waf install --destdir="$PKG/"
16 }
|