blob: cbc893ab4b96ba9de1232ba6439b76c37c5159d3 (
plain)
1 # Description: Cachy provides a simple yet effective caching library
2 # URL: https://github.com/sdispater/cachy
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-dephell
5
6 name=python3-cachy
7 version=0.3.0
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/c/cachy/cachy-$version.tar.gz)
10
11 build() {
12 cd cachy-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 --skip-build
17 }
|