updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / tudor-volumed-git / PKGBUILD
blob0dcb0f75a44b8d10f43e4fd60363742badca43fa
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
7 # for more information on packaging from GIT sources.
9 # Maintainer: Your Name <youremail@domain.com>
10 pkgname=tudor-volumed-git
11 pkgver=20110516
12 pkgrel=1
13 pkgdesc="ALSA Volume media key daemon. Binds XF86_Volume_* keys."
14 arch=('i386' 'x86_64')
15 url="https://github.com/darvid/tudor-volumed"
16 license=('BSD')
17 depends=('glibmm' 'gtkmm' 'gtk2' 'glib2')
18 makedepends=('git')
19 install=tudor-volumed.install
21 _gitroot="https://github.com/darvid/tudor-volumed"
22 _gitname="tudor-volumed"
24 build() {
25   cd "$srcdir"
26   msg "Connecting to GIT server...."
28   if [ -d $_gitname ] ; then
29     cd $_gitname && git pull origin
30     msg "The local files are updated."
31   else
32     git clone $_gitroot $_gitname
33   fi
35   msg "GIT checkout done or server timeout"
36   msg "Starting make..."
38   rm -rf "$srcdir/$_gitname-build"
39   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
40   cd "$srcdir/$_gitname-build"
42   make
45 package() {
47   cd "$srcdir/$_gitname-build"
48   install -D -m755 "tudor-volumed" "$pkgdir/usr/bin/tudor-volumed"