# Maintainer: Daniel M. Capella <polyzen@archlinux.org>
pkgname=python-sphinxcontrib-htmlhelp
_name=${pkgname#python-}
pkgver=2.0.5
pkgrel=3
pkgdesc='Sphinx extension which renders HTML help files'
arch=('any')
url=https://github.com/sphinx-doc/sphinxcontrib-htmlhelp
license=('BSD-2-Clause')
depends=('python')
makedepends=('git' 'python-build' 'python-flit-core' 'python-installer')
#checkdepends=('python-html5lib' 'python-pytest' 'python-sphinx')
source=("git+$url.git#tag=$pkgver")
b2sums=('2cb5ab4317888f764c71674e61cb8ba17e1f97f64994d6d5957ead23a26a4064d2dfe41bba72acf249fa8bdbdb34640f3b1b6d11ad81cb0e593f3101d78c1f21')
build() {
cd "$_name"
python -m build --wheel --skip-dependency-check --no-isolation
}
#check() {
# cd "$_name"
# pytest
#}
package() {
cd "$_name"
python -m installer --destdir="$pkgdir" dist/*.whl
# Symlink license file
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
install -d "$pkgdir"/usr/share/licenses/$pkgname
ln -s "$site_packages"/"${_name//-/_}"-$pkgver.dist-info/LICENSE \
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}