1 # Contributor: Pierre Gueth <pierre.gueth@gmail.com>
5 pkgdesc="This is the Python interface to the Redis key-value store."
7 url="http://github.com/andymccurdy/redis-py"
9 depends=('python' 'redis')
10 source=("https://github.com/downloads/andymccurdy/redis-py/redis-${pkgver}.tar.gz")
11 md5sums=('a77497d026885ed9c467a28e2d00388d')
14 cd "$srcdir/redis-${pkgver}"
15 python setup.py build install --root="${pkgdir}" || return 1
18 # vim:set ts=2 sw=2 et: