updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / python2-redis / PKGBUILD
blob65801b22ebe575a38cdfa15129485ab0fbf0327b
1 # Maintainer: Karol 'Kenji Takahashi' Wozniak <wozniakk@gmail.com>
2 # Contributor: Thomas S Hatch <thatch45@gmail.com>
4 pkgname=python2-redis
5 pkgver=2.4.10
6 pkgrel=1
7 pkgdesc="The Python interface to the Redis key-value store."
8 arch=(any)
9 url="http://github.com/andymccurdy/redis-py"
10 license=('custom')
11 depends=('python2' 'redis')
12 source=("https://github.com/downloads/andymccurdy/redis-py/redis-$pkgver.tar.gz")
13 md5sums=('3fac7ed77662e7709a70186725ef26d2')
15 build() {
16     cd "$srcdir/redis-$pkgver"
17     python2 setup.py build install --root="$pkgdir" --optimize=1
20 # vim:set ts=4 sw=4 et: