17 lines
693 B
Plaintext
17 lines
693 B
Plaintext
# Description: sphinx extension which outputs "serialized" HTML files (json and pickle)
|
|
# URL: https://github.com/sphinx-doc/sphinxcontrib-serializinghtml/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-build python3-flit-core python3-installer python3-wheel
|
|
|
|
name=python3-sphinxcontrib-serializinghtml
|
|
version=1.1.10
|
|
release=1
|
|
source=(https://pypi.org/packages/source/s/sphinxcontrib_serializinghtml/sphinxcontrib_serializinghtml-$version.tar.gz)
|
|
|
|
build() {
|
|
cd sphinxcontrib_serializinghtml-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|