19 lines
462 B
Plaintext
19 lines
462 B
Plaintext
# Description: Non-blocking redis client for python
|
|
# URL: https://pypi.org/project/hiredis/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-twisted
|
|
|
|
name=python3-hiredis
|
|
version=2.3.2
|
|
release=1
|
|
source=(https://pypi.org/packages/source/h/hiredis/hiredis-$version.tar.gz)
|
|
|
|
build() {
|
|
cd hiredis-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
-O1 \
|
|
--skip-build
|
|
}
|