Created
November 28, 2010 02:12
-
-
Save kuno/718501 to your computer and use it in GitHub Desktop.
python-couchdb PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Contributor: Byron Clark <[email protected]> | |
# 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