34 lines
895 B
Bash
34 lines
895 B
Bash
# Template file for 'python-wheel'
|
|
pkgname=python-wheel
|
|
version=0.31.0
|
|
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=1ae8153bed701cb062913b72429bcf854ba824f973735427681882a688cb55ce
|
|
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
|
|
}
|
|
}
|