19 lines
489 B
Plaintext
19 lines
489 B
Plaintext
# Description: Cachy provides a simple yet effective caching library
|
|
# URL: https://github.com/sdispater/cachy
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-cachy
|
|
version=0.3.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/c/cachy/cachy-$version.tar.gz)
|
|
|
|
build() {
|
|
cd cachy-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build \
|
|
-O1
|
|
}
|