blob: 9c6b034f40223299c27e27bf7f4dc0d1e30606f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="python python-gpep517"
DEPS="python-sphinxcontrib python-sphinxcontrib python-sphinxcontrib python-sphinxcontrib python-sphinxcontrib python-sphinxcontrib python-Jinja2 python-Pygments python-docutils python-snowballstemmer python-babel python-alabaster python-imagesize python-requests python-packaging python-importlib python-colorama python-sphinxcontrib python-flake8 python-flake8 python-flake8 python-flake8 python-isort python-mypy python-sphinx python-docutils python-types python-types python-pytest python-html5lib python-typed_ast python-cython"
PKG_VER=5.3.0
SOURCE="https://github.com/sphinx-doc/sphinx/archive/v$PKG_VER/sphinx-$PKG_VER.tar.gz"
DESC="Python documentation generator"
build() {
mkdir dist
python -m gpep517 build-wheel --wheel-dir dist --output-fd 1
}
package () {
python -m installer -d "$PKG_DEST" dist/sphinx-*.whl
}
|