blob: 416b44f4d6d7cea71290600de15c7db4b0989596 (
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.5.3
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 }
|