20 lines
620 B
Bash
20 lines
620 B
Bash
# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
|
|
|
|
_realname=wheel
|
|
pkgname="python-${_realname}"
|
|
pkgver=0.38.4
|
|
pkgrel=2
|
|
pkgdesc="A built-package format for Python"
|
|
arch=('any')
|
|
url="https://pypi.python.org/pypi/wheel"
|
|
license=('spdx:MIT')
|
|
depends=("python")
|
|
makedepends=("python-installer")
|
|
source=("https://pypi.debian.net/wheel/wheel-${pkgver}-py3-none-any.whl")
|
|
sha256sums=('b60533f3f5d530e971d6737ca6d58681ee434818fab630c83a734bb10c083ce8')
|
|
|
|
package() {
|
|
python -m installer --destdir="${pkgdir}" *.whl
|
|
install -Dm644 *.dist-info/LICENSE.txt "${pkgdir}/usr/share/licenses/python-${_realname}/COPYING"
|
|
}
|