updated on Tue Jan 10 08:08:34 UTC 2012
[aur-mirror.git] / todo / PKGBUILD
bloba9144001c25a03cfc61980cddb64d1687a43fb4a
1 # Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
3 pkgname=todo
4 pkgver=20100202
5 pkgrel=1
6 pkgdesc="A simple cli todo application."
7 arch=('any')
8 url="http://github.com/ghost1227/todo"
9 license=('GPL')
10 makedepends=('git')
12 _gitroot="git://github.com/ghost1227/todo.git"
13 _gitname="todo"
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