Skip to content

Instantly share code, notes, and snippets.

@kuno
Created November 28, 2010 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuno/718501 to your computer and use it in GitHub Desktop.
Save kuno/718501 to your computer and use it in GitHub Desktop.
python-couchdb PKGBUILD
# Contributor: Byron Clark <byron@theclarkfamily.name>
# Contributor: Guan 'kuno' Qing <neokuno AT gmail DOT com>
pkgname=python-couchdb
pkgver=0.8
pkgrel=2
pkgdesc="Python library for working with CouchDB"
url="http://code.google.com/p/couchdb-python/"
license=('BSD')
arch=(any)
depends=('python>=2.7' 'httplib2' 'couchdb')
makedepends=('python2-distribute')
conflicts=()
provides=()
source=(http://pypi.python.org/packages/source/C/CouchDB/CouchDB-$pkgver.tar.gz)
md5sums=('e32b39e459e1fa2586ea252712a11a59')
build() {
cd "$srcdir/CouchDB-$pkgver"
python2 setup.py install --root=$pkgdir --optimize=1
}
# vim:ts=2:sw=2:et
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment