forked from ports/contrib
22 lines
531 B
Plaintext
22 lines
531 B
Plaintext
# Description: A C library interface to the LV2 plug-in standard,
|
|
# URL: http://drobilla.net/software/lilv/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: sratom swig
|
|
|
|
name=lilv
|
|
version=0.24.8
|
|
release=1
|
|
source=(http://download.drobilla.net/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
sed -i "/ldconfig/d" wscript
|
|
|
|
/usr/bin/python3 waf configure --prefix=/usr \
|
|
--dyn-manifest \
|
|
--no-bash-completion
|
|
/usr/bin/python3 waf build $MAKEFLAGS
|
|
/usr/bin/python3 waf install --destdir="$PKG"
|
|
}
|