summaryrefslogtreecommitdiff
path: root/~xihh/couchapp-git/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to '~xihh/couchapp-git/PKGBUILD')
-rw-r--r--~xihh/couchapp-git/PKGBUILD40
1 files changed, 40 insertions, 0 deletions
diff --git a/~xihh/couchapp-git/PKGBUILD b/~xihh/couchapp-git/PKGBUILD
new file mode 100644
index 000000000..297426f3f
--- /dev/null
+++ b/~xihh/couchapp-git/PKGBUILD
@@ -0,0 +1,40 @@
+# Contributors: Moritz Heidkamp <moritz@twoticketsplease.de>, Sebastian Sauer <info@dynpages.de>
+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
+
+}