mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
14 lines
392 B
Plaintext
14 lines
392 B
Plaintext
# description : Linux OS platform information API
|
|
# depends : python3-build python3-installer python3-wheel
|
|
|
|
name=python3-distro
|
|
version=1.8.0
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/nir0s/distro/archive/v${version}/python-distro-${version}.tar.gz"
|
|
|
|
build() {
|
|
cd distro-$version
|
|
python3 -m build --wheel --no-isolation
|
|
python3 -m installer --destdir=$PKG dist/*.whl
|
|
}
|