blob: 337d33c25e37a5203f408b2b8c9d19bd6edd12a9 (
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 python3
5
6 name=mda-lv2
7 version=1.2.4
8 release=2
9 source=(https://download.drobilla.net/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 sed -e 's/python/python3/g' -i waf
14 ./waf configure --prefix=/usr
15 ./waf
16 ./waf install --destdir="$PKG/"
17 }
|