blob: 027bd1dbe91211ceb31cf885a21bc26948fa2b80 (
plain)
1 # Description: sphinx extension which outputs Apple help books
2 # URL: https://github.com/sphinx-doc/sphinxcontrib-applehelp/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-setuptools python3-installer python3-build python3-flit-core
5
6 name=python3-sphinxcontrib-applehelp
7 version=1.0.3
8 release=1
9 source=(https://github.com/sphinx-doc/${name#*-}/archive/$version/${name#*-}-$version.tar.gz)
10
11 build() {
12 cd ${name#*-}-$version
13
14 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
15 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
16 }
|