mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
20 lines
861 B
Plaintext
20 lines
861 B
Plaintext
# description : The Sphinx documentaion generator
|
|
# homepage : https://www.sphinx-doc.org/en/master/
|
|
# depends : python3-alabaster python3-docutils python3-imagesize python3-jinja2 python3-packaging python3-pygments python3-requests python3-snowballstemmer python3-sphinxcontrib-applehelp python3-sphinxcontrib-devhelp python3-sphinxcontrib-htmlhelp python3-sphinxcontrib-jsmath python3-sphinxcontrib-qthelp python3-sphinxcontrib-serializinghtml python3-sphinxcontrib-websupport python3-installer python3-build python3-flit-core
|
|
|
|
name=python3-sphinx
|
|
_name=sphinx
|
|
version=7.2.6
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/sphinx-doc/sphinx/archive/v$version.tar.gz"
|
|
|
|
bsdtar() {
|
|
tar $@;
|
|
}
|
|
|
|
build() {
|
|
cd $_name-$version
|
|
python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
python3 -m installer --destdir=$PKG dist/*.whl
|
|
}
|