# $Id: PKGBUILD 72422 2012-06-14 07:51:14Z speps $ # Maintainer: Ray Rashif # Contributor: speps pkgname=lilv pkgver=0.18.0 pkgrel=1 pkgdesc="A C library interface to the LV2 plug-in standard" arch=('i686' 'x86_64') url="http://drobilla.net/software/lilv/" license=('custom:ISC') depends=('python2-numpy' 'sratom>=0.4.4' 'jack') makedepends=('swig') optdepends=('bash-completion') source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2") md5sums=('1d1232ea73b239551bb4f462b414a819') build() { cd "$srcdir/$pkgname-$pkgver" # 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" } # vim:set ts=2 sw=2 et: