Files
ports/main/python3-flit-core/spkgbuild
2023-05-19 13:51:06 +00:00

17 lines
567 B
Plaintext

# description : Simplified packaging of Python modules
# homepage : https://github.com/takluyver/flit
# depends : python3-docutils python3-requests python3-tomli python3-pip
name=python3-flit-core
version=3.9.0
release=1
source="$name-$version.tar.gz::https://github.com/takluyver/flit/archive/$version/flit-$version.tar.gz"
build() {
rm flit-$version/tests/test_sdist.py
cd flit-$version/flit_core
/usr/bin/python3 build_dists.py
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG --ignore-installed --no-deps dist/*.whl
}