mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
16 lines
564 B
Plaintext
16 lines
564 B
Plaintext
# description : sphinx extension which outputs "serialized" HTML files (json and pickle)
|
|
# homepage : https://github.com/sphinx-doc/sphinxcontrib-serializinghtml/
|
|
# depends : python3-build python3-installer python3-flit-core
|
|
|
|
name=python3-sphinxcontrib-serializinghtml
|
|
version=1.1.9
|
|
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 --skip-dependency-check --no-isolation
|
|
python3 -m installer --destdir=$PKG dist/*whl
|
|
}
|