updated on Fri Jan 13 04:01:25 UTC 2012
[aur-mirror.git] / pkgwatch / PKGBUILD
blob26f72f4d490f408775d7d602ebfb894648604163
1 # Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
3 pkgname=pkgwatch
4 pkgver=20090911
5 pkgrel=1
6 pkgdesc="An Arch out-of-date package notifier."
7 arch=('any')
8 url="http://ghost1227.com/pkgwatch"
9 license=('GPL')
10 makedepends=('git')
12 _gitroot="git://github.com/ghost1227/pkgwatch.git"
13 _gitname="pkgwatch"
15 build() {
16   cd ${srcdir}
17   msg "Connecting to GIT server...."
19   if [ -d ${_gitname} ] ; then
20     cd ${_gitname} && git pull origin
21     msg "The local files are updated."
22   else
23     git clone ${_gitroot}
24   fi
26   msg "GIT checkout done or server timeout"
27   msg "Starting make..."
29   rm -rf ${srcdir}/${_gitname}-build
30   git clone ${srcdir}/${_gitname} ${srcdir}/${_gitname}-build
31   cd ${srcdir}/${_gitname}-build
33   install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
34   install -Dm644 man/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
35