### this file is sourced not run
PKGVER=2.0.0
PKGBUILD=1
PKGARCH=noarch

# source: BLFS 11.3
TARBALL=sphinxcontrib-htmlhelp-$PKGVER.tar.gz
MD5SUM=70765b55395a3c20233631802902c840
SRC_URL=https://files.pythonhosted.org/packages/source/s/sphinxcontrib-htmlhelp/$TARBALL
BUNDLE=

SLACKREQ='python3 python3-sphinxcontrib-applehelp'
SLACKDESC="python3-sphinxcontrib-htmlhelp: python3-sphinxcontrib-htmlhelp $PKGVER (Sphnix HTML output)
python3-sphinxcontrib-htmlhelp: 
python3-sphinxcontrib-htmlhelp: The Sphinxcontrib-htmlhelp package is a Sphinx extension which 
python3-sphinxcontrib-htmlhelp: outputs HTML help files.
python3-sphinxcontrib-htmlhelp: 
python3-sphinxcontrib-htmlhelp: 
python3-sphinxcontrib-htmlhelp: 
python3-sphinxcontrib-htmlhelp: 
python3-sphinxcontrib-htmlhelp: 
python3-sphinxcontrib-htmlhelp: 
python3-sphinxcontrib-htmlhelp: 
"

### default pkg_download
### default pkg_prepare
### default pkg_package
### build
pkg_build() {
	# pkg_build_python3modules && # doesn't work, no setup.py
	# so use BLFS 11.3 method to build the module

	cd /tmp/sphinx* &&
	pip3 wheel -w dist --no-build-isolation --no-deps $PWD &&
	pip3 install --no-index --find-links dist --no-cache-dir --no-user sphinxcontrib-htmlhelp &&

	pkg_build_slackdesc
}


