blob: cfa3d56aa3321a43050796593504ec8c9a7ee944 (
plain)
1 # Description: httplib2 caching for requests
2 # URL: https://github.com/ionrock/cachecontrol
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-msgpack python3-requests
5 # Optional: python3-lockfile
6
7 name=python3-cachecontrol
8 version=0.12.11
9 release=1
10 source=(https://github.com/ionrock/cachecontrol/archive/v$version/$name-$version.tar.gz)
11
12 build() {
13 cd cachecontrol-$version
14 /usr/bin/python3 setup.py build
15 /usr/bin/python3 setup.py install --prefix=/usr \
16 --root=$PKG \
17 --skip-build
18 }
|