blob: 75d87c7b402ec7613e4a6e67bf38dd8ff5a52f8a (
plain)
1
2
3
4
5
6
7
8
9
10
|
name=python-distlib
version=0.4.0
release=1
source="https://github.com/pypa/distlib/archive/${version}/distlib-${version}.tar.gz"
build() {
gpep517 build-wheel --wheel-dir .dist --output-fd 3 3>&1 >&2
python3 -m installer -d $PKG .dist/distlib*.whl
rm $PKG/usr/lib/python3*/site-packages/distlib/*.exe
}
|