blob: 46a9cec21f386570b88f6ffc13623d4ddad64a11 (
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 # Depends on: sratom swig
5
6 name=lilv
7 version=0.24.12
8 release=1
9 source=(http://download.drobilla.net/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 sed -i "/ldconfig/d" wscript
15
16 /usr/bin/python3 waf configure --prefix=/usr \
17 --dyn-manifest \
18 --no-bash-completion
19 /usr/bin/python3 waf build $MAKEFLAGS
20 /usr/bin/python3 waf install --destdir="$PKG"
21 }
|