blob: b476d7b31df4e800e976fb75db2157c1177466df (
plain)
1 # Description: Successor to the LADSPA audio plug-in standard.
2 # URL: http://lv2plug.in/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Packager: Danny Rawlins, crux at romster dot me
5 # Depends on: python3 libsndfile
6
7 name=lv2
8 version=1.18.0
9 release=1
10 source=(http://lv2plug.in/spec/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 /usr/bin/python3 waf configure --prefix=/usr
16 /usr/bin/python3 waf build $MAKEFLAGS
17 /usr/bin/python3 waf install --destdir="$PKG"
18 }
|