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

# LFS 11.3
TARBALL=wheel-$PKGVER.tar.gz
MD5SUM=83bb4e7bd4d687d398733f341a64ab91
BUNDLE=fatdog-base-11.3.tar
SRC_URL=http://distro.ibiblio.org/fatdog/source/900/$BUNDLE

SLACKREQ='python3'
SLACKDESC="python3-wheel: python3-wheel $PKGVER (Python3 Wheel Packaging Standard)
python3-wheel: 
python3-wheel: Wheel is a Python library that is the reference implementation of the 
python3-wheel: Python wheel packaging standard.
python3-wheel: 
python3-wheel: 
python3-wheel: 
python3-wheel: 
python3-wheel: 
python3-wheel: 
python3-wheel: 
"

### default pkg_download
### default pkg_prepare
### default pkg_package
### build
pkg_build() {
	cd /tmp/wheel*

	# LFS 11.3 build
	#PYTHONPATH=src pip3 wheel -w dist --no-build-isolation --no-deps $PWD
	#pip3 install --no-index --find-links=dist wheel

	# we use the traditional one
	python3 setup.py build &&
	python3 setup.py install \
		--single-version-externally-managed \
		--root / &&
	pkg_build_slackdesc
}


