updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / redoc / PKGBUILD
blob06ba5c8a6e110137c86d3f14f5eba39b4c344dcb
1 # Maintainer: Simon Klee <simon@simonklee.org>
3 pkgname=redoc
4 pkgver=20120119
5 pkgrel=2
6 pkgdesc="redoc - an interface to the Redis documentation"
7 arch=('i686' 'x86_64')
8 license=('GPL')
9 makedepends=('git')
10 url="http://github.com/simonz05/redoc"
11 provides=('redoc')
12 #depends=('go')
14 _gitroot="git://github.com/simonz05/redoc.git"
15 _gitname="redoc-git"
17 build() {
18   cd $srcdir
19   msg "Connecting to the GIT server...."
20   
21   if [[ -d $srcdir/$_gitname ]] ; then
22     cd $_gitname
23     git pull origin
24     msg "The local files are updated."
25   else
26     git clone $_gitroot $_gitname
27   fi
28   
29   msg "GIT checkout done"
30   msg "Starting make..."
32   git clone $srcdir/$_gitname $srcdir/$_gitname-build
33   cd $srcdir/$_gitname-build
35   make
36   make DESTDIR=$pkgdir install
38   rm -rf $srcdir/$_gitname-build