blob: f0ad5ec36ae3081f06fa67f4b5c0dd696e8a5b80 (
plain)
1 # Description: python bindings for the redis KV store
2 # URL: https://github.com/andymccurdy/redis-py
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: python-setuptools
5
6 name=redis-py
7 version=3.3.11
8 release=1
9 source=(https://github.com/andymccurdy/redis-py/archive/$version/$name-$version.tar.gz)
10
11 build() {
12
13 cd $name-$version
14 /usr/bin/python setup.py install --prefix=/usr --root=$PKG
15
16 }
|