mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-19 21:13:19 +00:00
17 lines
570 B
Plaintext
17 lines
570 B
Plaintext
# description : sphinx extension which outputs Apple help books
|
|
# homepage : https://github.com/sphinx-doc/sphinxcontrib-applehelp/
|
|
# depends : python3-setuptools python3-build python3-installer python3-wheel python3-flit-core
|
|
|
|
name=python3-sphinxcontrib-applehelp
|
|
version=1.0.7
|
|
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 --wheel --skip-dependency-check --no-isolation
|
|
python3 -m installer --destdir=$PKG dist/*.whl
|
|
|
|
}
|