updated on Fri Jan 20 00:01:56 UTC 2012
[aur-mirror.git] / aj-snapshot / PKGBUILD
blob41b8de39cbaada5c2e7188775a750c9397e22aee
1 # Maintainer: SpepS <dreamspepser at yahoo dot it>
3 pkgname=aj-snapshot
4 pkgver=0.9.5
5 pkgrel=1
6 pkgdesc="A small program that can be used to make snapshots of the connections made between JACK and/or ALSA clients."
7 arch=(i686 x86_64)
8 url="http://aj-snapshot.sourceforge.net/"
9 license=('GPL3')
10 depends=('jack')
11 makedepends=('mxml')
12 source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2")
13 md5sums=('9c3b442c0163ae38e92be5077c4fb62c')
15 build() {
16   cd "$srcdir/$pkgname-$pkgver"
18   # Does not build with -Wl,--as-needed
19   export LDFLAGS="${LDFLAGS//,--as-needed}"
21   ./configure --prefix=/usr
22   make
25 package() {
26   cd "$srcdir/$pkgname-$pkgver"
28   make DESTDIR="$pkgdir/" install
31 # vim:set ts=2 sw=2 et: