blob: 6303a60a952655364e15c2b3abda25591aea69d7 (
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.6
8 release=1
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 }
|