# Contributors: Moritz Heidkamp , Sebastian Sauer pkgname=couchapp-git pkgver=20120413 pkgrel=1 pkgdesc="A set of helpers and a jQuery plugin that conspire to get you up and running on CouchDB quickly and correctly." arch=('any') url="http://github.com/couchapp/couchapp/" license=('APACHE') depends=('python2-restkit' 'python2-watchdog') makedepends=('git' 'setuptools') provides=(couchapp) _gitroot="git://github.com/couchapp/couchapp.git" _gitname="couchapp" build() { cd "$srcdir" msg "Connecting to GIT server...." if [ -d $_gitname ] ; then cd $_gitname && git pull origin msg "The local files are updated." else git clone "$_gitroot" "$_gitname" fi msg "GIT checkout done or server timeout" msg "Starting make..." rm -rf "$srcdir/$_gitname-build" git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" } package() { cd "$srcdir/$_gitname-build" python2 setup.py install --root="$pkgdir/" --optimize=1 }