blob: b35868dac0e7a71a501447bfb301942b9158976e (
plain)
1 # Description: The Sphinx documentaion generator
2 # URL: https://www.sphinx-doc.org/en/master/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-alabaster python3-docutils python3-flit-core 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
5
6 name=python3-sphinx
7 _name=Sphinx
8 version=6.1.3
9 release=1
10 source=(https://pypi.org/packages/source/${_name:0:1}/$_name/$_name-$version.tar.gz)
11
12 build() {
13 cd $_name-$version
14
15 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
16 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
17 }
|