forked from ports/contrib
18 lines
421 B
Plaintext
18 lines
421 B
Plaintext
# Description: Successor to the LADSPA audio plug-in standard.
|
|
# URL: https://lv2plug.in/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libsndfile
|
|
|
|
name=lv2
|
|
version=1.18.4
|
|
release=1
|
|
source=(http://lv2plug.in/spec/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
/usr/bin/python3 waf configure --prefix=/usr
|
|
/usr/bin/python3 waf build $MAKEFLAGS
|
|
/usr/bin/python3 waf install --destdir="$PKG"
|
|
}
|