forked from ports/contrib
18 lines
442 B
Plaintext
18 lines
442 B
Plaintext
# Description: Library for loading and wrapping LV2 plugin UIs.
|
|
# URL: https://drobilla.net/software/suil/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: sratom
|
|
|
|
name=suil
|
|
version=0.10.12
|
|
release=1
|
|
source=(https://download.drobilla.net/$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
|
|
}
|