updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / pnmixer-git / PKGBUILD
blob3c88fa2232a9d3becd29af42b02d396866c6f2b7
1 # Maintainer: Nick Lanham <nick@afternight.org>
2 pkgname=pnmixer-git  
3 pkgver=20110930
4 pkgrel=1
5 pkgdesc="PNMixer is a GTK volume mixer applet that runs in the system tray. \
6 It is lightweight, works with both pulseaudio and alsa, supports mouse wheel \
7 volume adjustment.
9 arch=('i686' 'x86_64')
10 license=('GPL')
11 url="https://github.com/nicklan/pnmixer"
12 groups=('pnmixer')
13 depends=('gtk2' 'alsa-lib')
14 makedepends=('git')
15 provides=('pnmixer')
16 conflicts=('pnmixer')
18 _gitroot="git://github.com/nicklan/pnmixer.git"
19 _gitname="pnmixer"
21 build() {
22   cd "${srcdir}/"
23   msg "Getting git sources"
25   if [ -d ${srcdir}/$_gitname ] ; then
26     cd $_gitname && git pull origin
27     msg "The local files are updated."
28   else
29     git clone ${_gitroot}
30   fi
32   msg "Git checkout finished"
34   msg "Building package"  
36   cd ${srcdir}/${_gitname}
38   ./autogen.sh || return 1
39   ./configure --prefix=/usr || return 1
40   make || return 1
41   make DESTDIR="$pkgdir" install || return 1