mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
16 lines
535 B
Plaintext
16 lines
535 B
Plaintext
# description : sphinx extension which outputs Devhelp document
|
|
# homepage : https://github.com/sphinx-doc/sphinxcontrib-devhelp/
|
|
# depends : python3-build python3-installer python3-flit-core
|
|
|
|
name=python3-sphinxcontrib-devhelp
|
|
version=1.0.5
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/sphinx-doc/${name#*-}/archive/$version/${name#*-}-$version.tar.gz"
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
python3 -m installer --destdir=$PKG dist/*.whl
|
|
|
|
}
|