diff options
Diffstat (limited to 'community/jalv/PKGBUILD')
-rw-r--r-- | community/jalv/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/jalv/PKGBUILD b/community/jalv/PKGBUILD new file mode 100644 index 000000000..3efe760d3 --- /dev/null +++ b/community/jalv/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 95410 2013-08-11 23:09:01Z speps $ +# Maintainer: speps <speps at aur dot archlinux dot org> + +pkgname=jalv +pkgver=1.4.2 +pkgrel=1 +pkgdesc="A simple but fully featured LV2 host for Jack" +arch=('i686' 'x86_64') +url="http://drobilla.net/software/$pkgname/" +license=('custom:ISC') +depends=('lilv' 'suil') +makedepends=('python2' 'qt4' 'gtk2' 'gtk3' 'gtkmm') +optdepends=('qt4: Qt 4.x frontend' + 'gtk2: Gtk+ 2.x frontend' + 'gtk3: Gtk+ 3.x frontend' + 'gtkmm: Gtk++ 2.x frontend') +source=(http://download.drobilla.net/$pkgname-$pkgver.tar.bz2{,.sig}) +md5sums=('a649bbe71ecb54563764f4acbdcc84f6' + 'SKIP') + +build() { + cd "$srcdir/$pkgname-$pkgver" + python2 waf configure --prefix=/usr + python2 waf +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + python2 waf install --destdir="$pkgdir" + + # license + install -Dm644 COPYING \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} |