blob: c4b55ffc1c348d30057ef6bf42c12c6795c3c954 (
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-py3
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 redis-py-$version
14 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG
15
16 }
|