1 # Maintainer: Stefan Seering <stefanarch@gmx.de>
5 pkgdesc="A simple git desktop notifier. It monitors git repositories in current directory for new commits/branches/tags and shows desktop notification if anything new arrived."
7 url='https://github.com/sickill/git-dude'
9 depends=('git' 'libnotify')
12 _gitroot='git://github.com/sickill/git-dude.git'
17 msg "Connecting to GIT server...."
19 if [[ -d "$_gitname" ]]; then
20 cd "$_gitname" && git pull origin
21 msg "The local files are updated."
23 git clone "$_gitroot" "$_gitname"
26 msg "GIT checkout done or server timeout"
27 msg "Starting build..."
29 rm -rf "$srcdir/$_gitname-build"
30 git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
31 cd "$srcdir/$_gitname-build"
35 local destDir="${pkgdir}/usr/bin"
37 cd "$srcdir/$_gitname-build"
39 install -m 755 git-dude "${destDir}"
42 # vim:set ts=2 sw=2 et: