2020-08-21 08:46:35 +00:00
|
|
|
# Description: A platform independent file lock for Python
|
|
|
|
# URL: https://github.com/benediktschmitt/py-filelock
|
2021-10-10 12:24:01 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-08-21 08:46:35 +00:00
|
|
|
# Depends on: python3-setuptools
|
|
|
|
|
|
|
|
name=python3-filelock
|
2021-10-10 12:24:01 +02:00
|
|
|
version=3.3.0
|
2020-08-21 08:46:35 +00:00
|
|
|
release=1
|
2021-10-10 12:24:01 +02:00
|
|
|
source=(https://github.com/benediktschmitt/py-filelock/archive/$version/$name-$version.tar.gz)
|
2020-08-21 08:46:35 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd py-filelock-$version
|
|
|
|
python3 setup.py build
|
|
|
|
python3 setup.py install --root="$PKG" --optimize=1
|
|
|
|
}
|