vp-build/srcpkgs/python-wheel/template

35 lines
895 B
Bash

# Template file for 'python-wheel'
pkgname=python-wheel
version=0.32.2
revision=1
noarch=yes
wrksrc="wheel-${version}"
build_style=python-module
pycompile_module="wheel"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools"
short_desc="Built-package format for Python (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/pypa/wheel"
license="MIT"
distfiles="${PYPI_SITE}/w/wheel/wheel-${version}.tar.gz"
checksum=196c9842d79262bb66fcf59faa4bd0deb27da911dbc7c6cdca931080eb1f0783
alternatives="wheel:wheel:usr/bin/wheel2"
post_install() {
vlicense LICENSE.txt
}
python3-wheel_package() {
noarch=yes
pycompile_module="wheel"
depends="python3-setuptools"
short_desc="${short_desc/Python2/Python3}"
alternatives="wheel:wheel:usr/bin/wheel3"
pkg_install() {
vmove usr/bin/*3
vmove usr/lib/python3*
vlicense LICENSE.txt
}
}