File PKGBUILD of Package python-wheel-bootstrap
# Maintainer: Yukari Chiba <[email protected]> _pypiname=wheel pkgname=python-wheel pkgver=0.46.3 pkgrel=1 pkgdesc="A built-package format for Python" arch=(any) url="https://pypi.python.org/pypi/wheel" license=('MIT') depends=('python-packaging') optdepends=('python-keyring: for wheel.signatures' 'python-xdg: for wheel.signatures') makedepends=('python-build' 'python-flit-core' 'python-installer') source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/wheel/archive/$pkgver.tar.gz") sha512sums=('8f92313cc26b55dd5d9720b95a7dce81493ac26f988c261c7eb2591bc0ac204df1c2ec5a58ab3c069bbdb59b13b27f807be29edec996c02d0b09e3ac2ad4aebc') build() { cd wheel-$pkgver python -m build --wheel --no-isolation } package() { cd wheel-$pkgver python -m installer --destdir="$pkgdir" dist/*.whl _install_license_ LICENSE.txt }