diff options
Diffstat (limited to 'community/patchage/PKGBUILD')
-rw-r--r-- | community/patchage/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/patchage/PKGBUILD b/community/patchage/PKGBUILD new file mode 100644 index 000000000..fe2ca8b32 --- /dev/null +++ b/community/patchage/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 37631 2011-01-15 21:42:41Z schiv $ +# Maintainer: Ray Rashif <schiv@archlinux.org> +# Contributor: Max Pray a.k.a. Synthead <synthead@gmail.com> +# Contributor: clarence <catchfire at gmail dot com> + +pkgname=patchage +pkgver=0.5.0 +pkgrel=1 +pkgdesc="A modular patch bay for audio and MIDI systems" +arch=(i686 x86_64) +url="http://drobilla.net/software/patchage" +license=('GPL') +depends=('dbus-glib' 'libglademm' 'hicolor-icon-theme' + 'raul' 'flowcanvas' 'jack') +makedepends=('boost' 'python2') +install=$pkgname.install +source=(http://download.drobilla.net/$pkgname-$pkgver.tar.bz2) +md5sums=('3f1c297c8c6b998563d1a2fbc215cf85') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf configure --prefix=/usr + python2 waf build $MAKEFLAGS +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf --destdir="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |