2020-04-27 21:14:19 -04:00
|
|
|
# Description: sphinx extension which renders HTML help files
|
|
|
|
# URL: https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/
|
2021-02-02 22:49:46 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2020-04-27 21:14:19 -04:00
|
|
|
# Depends on: python3-setuptools
|
|
|
|
|
|
|
|
name=python3-sphinxcontrib-htmlhelp
|
2021-09-18 13:49:51 +10:00
|
|
|
_name=${name#*-}
|
2021-06-27 20:02:37 +00:00
|
|
|
version=2.0.0
|
2021-09-18 13:49:51 +10:00
|
|
|
release=2
|
|
|
|
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$version.tar.gz)
|
2020-04-27 21:14:19 -04:00
|
|
|
|
|
|
|
build() {
|
2021-09-18 13:49:51 +10:00
|
|
|
cd $_name-$version
|
2020-04-27 21:14:19 -04:00
|
|
|
|
|
|
|
/usr/bin/python3 setup.py build
|
2021-09-18 13:49:51 +10:00
|
|
|
/usr/bin/python3 setup.py install --root=$PKG --optimize=1 --skip-build
|
2020-04-27 21:14:19 -04:00
|
|
|
|
2021-09-18 13:49:51 +10:00
|
|
|
# chmod -R go-w,a+r,u+w $PKG
|
2020-04-27 21:14:19 -04:00
|
|
|
}
|