1 # Maintainer: Bryan Bennett <bbenne10@gmail.com>
5 pkgdesc="Lightweight, customizable notification daemon"
7 url="https://github.com/Cloudef/cow-notify"
13 _giturl="https://github.com/Cloudef/cow-notify.git"
17 msg "Connecting to GIT server...."
18 if [[ -d "$_gitname" ]]; then
19 cd "$_gitname" && git pull origin
20 msg "The local files are updated."
25 msg "GIT checkout done or server timeout"
26 msg "Starting build..."
28 rm -rf "$srcdir/$_gitname-build"
29 git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
30 cd "$srcdir/$_gitname-build"
36 cd "$srcdir/$_gitname-build"
37 install -D -m755 "cow-notify" "$pkgdir/usr/bin/cow-notify"
40 # vim:set ts=2 sw=2 et: