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