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, 0 insertions, 40 deletions
diff --git a/~xihh/couchapp-git/PKGBUILD b/~xihh/couchapp-git/PKGBUILD
deleted file mode 100644
index 297426f3f..000000000
--- a/~xihh/couchapp-git/PKGBUILD
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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
-
-}