updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / g15audacious / PKGBUILD
blob2b6fa4d83451439fe6f4597d1d1c942e9d018c0d
1 # Contributor: Fabian (dafab) Tiefert  <dafab at gmx dot com>
2 # Contributor: zoulnix <z[o]ulnix.borke[dd]uck.c[o]m>
3 pkgname=g15audacious
4 pkgver=2.5.7
5 pkgrel=2
6 pkgdesc="A very simple spectrum analyser and oscilloscoe for audacious."
7 arch=('i686' 'x86_64')
8 url="http://www.g15tools.com/"
9 license=('GPL')
10 depends=('audacious' 'g15daemon')
11 makedepends=('gcc' 'make' 'pkg-config')
12 options=('!libtool')
13 source=(http://downloads.sourceforge.net/g15daemon/g15daemon-audacious-${pkgver}.tar.bz2)
14 md5sums=('817289b777c4973e9eeffad39d5a7caf')
16 build() {
17   cd ${srcdir}/g15daemon-audacious-${pkgver}
19   # fix audacious header...
20   sed -i -e 's:playlist.h:playlist_container.h:' g15daemon_audacious_spectrum.c || return 1
22   ./configure --prefix=/usr \
23               --sysconfdir=/etc \
24               --localstatedir=/var \
25               --disable-static
27   make || return 1
28   make DESTDIR=${pkgdir} install || return 1