17 lines
468 B
Plaintext
17 lines
468 B
Plaintext
|
# Description: A python package that provides useful locks
|
||
|
# URL: A python package that provides useful locks
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-setuptools
|
||
|
#python3-six
|
||
|
|
||
|
name=python3-fasteners
|
||
|
version=0.16
|
||
|
release=1
|
||
|
source=(https://pypi.org/packages/source/f/fasteners/${name#*-}-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd ${name#*-}-$version
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --optimize=1 --root=$PKG
|
||
|
}
|