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

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

SLACKREQ='python3 python3-sphinxcontrib-applehelp'
SLACKDESC="python3-sphinxcontrib-devhelp: python3-sphinxcontrib-devhelp $PKGVER (Sphnix Devhelp output)
python3-sphinxcontrib-devhelp: 
python3-sphinxcontrib-devhelp: The Sphinxcontrib-devhelp package is a Sphinx extension which 
python3-sphinxcontrib-devhelp: outputs Devhelp documents.
python3-sphinxcontrib-devhelp: 
python3-sphinxcontrib-devhelp: 
python3-sphinxcontrib-devhelp: 
python3-sphinxcontrib-devhelp: 
python3-sphinxcontrib-devhelp: 
python3-sphinxcontrib-devhelp: 
python3-sphinxcontrib-devhelp: 
"

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

	pkg_build_slackdesc
}


