summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4edd5a3d588fabd3ffebff863239c6e0fb8fe32f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Maintainer: speps <speps at aur dot archlinux dot org>
# Contributor: Max Pray a.k.a. Synthead <synthead@gmail.com>
# Contributor: clarence <catchfire at gmail dot com>

pkgname=patchage
pkgver=1.0.0
pkgrel=1
pkgdesc="A modular patch bay for audio and MIDI systems based on Jack and Alsa"
arch=('i686' 'x86_64')
url="http://drobilla.net/software/patchage"
license=('GPL3')
depends=('ganv' 'jack' 'desktop-file-utils')
makedepends=('boost' 'python2')
install="$pkgname.install"
source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2")
md5sums=('d16a3fc045faff7fd70f3b4769b65698')

build() {
  cd $pkgname-$pkgver
  python2 waf configure --prefix=/usr
  python2 waf build $MAKEFLAGS
}

package() {
  cd $pkgname-$pkgver
  python2 waf install --destdir="$pkgdir"
}

# vim:set ts=2 sw=2 et: