blob: 4f2c60818c9c2eee663ca688e57dd1b9babfffc8 (
plain)
1 # Description: A C library interface to the LV2 plug-in standard,
2 # URL: http://drobilla.net/software/lilv/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Packager: Danny Rawlins, crux at romster dot me
5 # Depends on: python3-numpy sratom jack swig
6
7 name=lilv
8 version=0.24.6
9 release=1
10 source=(http://download.drobilla.net/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 sed -i "/ldconfig/d" wscript
16
17 /usr/bin/python3 waf configure --prefix=/usr \
18 --dyn-manifest \
19 --no-bash-completion
20 /usr/bin/python3 waf build $MAKEFLAGS
21 /usr/bin/python3 waf install --destdir="$PKG"
22 }
|