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

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

SLACKREQ='python3 python3-sphinxcontrib-applehelp'
SLACKDESC="python3-sphinxcontrib-qthelp: python3-sphinxcontrib-qthelp $PKGVER (Sphnix QtHelp output)
python3-sphinxcontrib-qthelp: 
python3-sphinxcontrib-qthelp: The sphinxcontrib-qthelp a Sphinx extension which outputs QtHelp 
python3-sphinxcontrib-qthelp: documents.
python3-sphinxcontrib-qthelp: 
python3-sphinxcontrib-qthelp: 
python3-sphinxcontrib-qthelp: 
python3-sphinxcontrib-qthelp: 
python3-sphinxcontrib-qthelp: 
python3-sphinxcontrib-qthelp: 
python3-sphinxcontrib-qthelp: 
"

### 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-qthelp &&

	pkg_build_slackdesc
}


