24 lines
617 B
Plaintext
24 lines
617 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
|
||
|
# Packager: Danny Rawlins, crux at romster dot me
|
||
|
# Depends on: python3-numpy sratom jack swig
|
||
|
|
||
|
name=lilv
|
||
|
version=0.24.4
|
||
|
release=2
|
||
|
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 \
|
||
|
--bindings \
|
||
|
--no-bash-completion
|
||
|
/usr/bin/python3 waf build $MAKEFLAGS
|
||
|
/usr/bin/python3 waf install --destdir="$PKG"
|
||
|
}
|