fix: python package renaming
This commit is contained in:
3
src/pypi-sphinxcontrib-applehelp/.gitignore
vendored
Normal file
3
src/pypi-sphinxcontrib-applehelp/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/pypi-sphinxcontrib-applehelp/changes.md
Normal file
2
src/pypi-sphinxcontrib-applehelp/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.0.4
|
||||
First version
|
18
src/pypi-sphinxcontrib-applehelp/pkg.sh
Normal file
18
src/pypi-sphinxcontrib-applehelp/pkg.sh
Normal file
@ -0,0 +1,18 @@
|
||||
NAME="pypi-sphinxcontrib-applehelp"
|
||||
DESC="Sphinx extension which outputs Apple help books"
|
||||
VERSION="1.0.4"
|
||||
|
||||
FILES=("https://files.pythonhosted.org/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib-applehelp-${VERSION}.tar.gz")
|
||||
HASHES=("8d52173d3d5c7bd9c0e3da26cd217916")
|
||||
|
||||
DEPENDS=("python3")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf "sphinxcontrib-applehelp-${VERSION}.tar.gz"
|
||||
cd "sphinxcontrib-applehelp-${VERSION}"
|
||||
|
||||
python3 -m build --wheel --skip-dependency-check --no-isolation
|
||||
PYTHONPATH=src python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
|
||||
|
||||
cd .. && rm -r "sphinxcontrib-applehelp-${VERSION}"
|
||||
}
|
Reference in New Issue
Block a user