mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
17 lines
548 B
Plaintext
17 lines
548 B
Plaintext
# description : sphinx extension which renders HTML help files
|
|
# homepage : https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/
|
|
# depends : python3-build python3-installer python3-wheel
|
|
|
|
name=python3-sphinxcontrib-htmlhelp
|
|
_name=sphinxcontrib-htmlhelp
|
|
version=2.0.1
|
|
release=1
|
|
source="$name-$version.tar.gz::https://files.pythonhosted.org/packages/source/s/$_name/$_name-$version.tar.gz"
|
|
|
|
build() {
|
|
cd $_name-$version
|
|
|
|
python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
python3 -m installer --destdir=$PKG dist/*.whl
|
|
}
|