2016-08-06 18:16:34 +02:00
|
|
|
# Description: python bindings for the redis KV store
|
|
|
|
# URL: https://github.com/andymccurdy/redis-py
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2019-03-31 23:27:50 +02:00
|
|
|
# Depends on: python-setuptools
|
2016-08-06 18:16:34 +02:00
|
|
|
|
|
|
|
name=redis-py
|
2020-06-17 20:31:48 +00:00
|
|
|
version=3.5.3
|
2016-08-06 18:16:34 +02:00
|
|
|
release=1
|
2019-04-10 01:47:17 +02:00
|
|
|
source=(https://github.com/andymccurdy/redis-py/archive/$version/$name-$version.tar.gz)
|
2016-08-06 18:16:34 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
|
|
|
|
cd $name-$version
|
|
|
|
/usr/bin/python setup.py install --prefix=/usr --root=$PKG
|
|
|
|
|
|
|
|
}
|