blob: 865757bf1936812ec75cc3b4edff7ccedacc9788 (
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: python3-setuptools
5
6 name=redis-py3
7 version=3.5.3
8 release=1
9 source=(https://github.com/andymccurdy/redis-py/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd redis-py-$version
13 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG
14 }
|