python-wheel: fix template
This commit is contained in:
parent
70507733ad
commit
0689be6497
1 changed files with 11 additions and 9 deletions
|
@ -1,19 +1,20 @@
|
|||
# Template file for 'python-wheel'
|
||||
pkgname=python-wheel
|
||||
version=0.30.0
|
||||
revision=1
|
||||
wrksrc="${pkgname/python-//}-${version}"
|
||||
revision=2
|
||||
noarch=yes
|
||||
wrksrc="wheel-${version}"
|
||||
build_style=python-module
|
||||
pycompile_module="wheel"
|
||||
hostmakedepends="python-setuptools python3-setuptools"
|
||||
short_desc="A built-package format for Python2"
|
||||
maintainer="Orphaned <orphan@voidlinux.eu>"
|
||||
license="MIT"
|
||||
depends="python"
|
||||
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=9515fe0a94e823fd90b08d22de45d7bde57c90edce705b22f5e1ecf7e1b653c8
|
||||
alternatives="python-wheel:wheel:usr/bin/wheel2"
|
||||
noarch=yes
|
||||
alternatives="wheel:wheel:usr/bin/wheel2"
|
||||
|
||||
post_install() {
|
||||
vlicense LICENSE.txt
|
||||
|
@ -21,11 +22,12 @@ post_install() {
|
|||
|
||||
python3-wheel_package() {
|
||||
noarch=yes
|
||||
depends="python3"
|
||||
pycompile_module="wheel"
|
||||
short_desc="${short_desc/Python2/Python3}"
|
||||
alternatives="python-wheel:wheel:usr/bin/wheel3"
|
||||
alternatives="wheel:wheel:usr/bin/wheel3"
|
||||
pkg_install() {
|
||||
vmove "usr/bin/*3"
|
||||
vmove usr/bin/*3
|
||||
vmove usr/lib/python3*
|
||||
vlicense LICENSE.txt
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue