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

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

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

"

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

	pkg_build_slackdesc
}


