core/lilv/PKGBUILD
2015-01-09 00:46:55 +01:00

46 lines
1.1 KiB
Bash

pkgname=lilv
pkgver=0.20.0
pkgrel=1
pkgdesc="A library to make the use of LV2 plugins as simple as possible for applications"
arch=('x86_64')
url="http://drobilla.net/software/lilv/"
license=('custom:ISC')
depends=('python2' 'sratom>=0.4.6' 'jack')
makedepends=('swig')
optdepends=('bash-completion: auto-complete words')
source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2")
md5sums=('f88419fa70cc96dfdc7e0bf3cd09b180')
build() {
cd "$srcdir/$pkgname-$pkgver"
# fix UI API error
# backport of http://dev.drobilla.net/changeset/5092
patch -Np2 -i "$srcdir/lilvmm.patch"
# pick up python2 even when python3 exists
# (the build system has flaky support for python3)
export PYTHON="/usr/bin/python2"
# remove ldconfig --speps
sed -i "/ldconfig/d" wscript
python2 waf configure --prefix=/usr \
--configdir=/etc \
--dyn-manifest \
--bindings
python2 waf build $MAKEFLAGS
}
package() {
cd "$srcdir/$pkgname-$pkgver"
python2 waf install --destdir="$pkgdir"
# license
install -Dm644 COPYING \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}