35 lines
990 B
Bash
35 lines
990 B
Bash
# Template file for 'python-virtualenv'
|
|
pkgname=python-virtualenv
|
|
version=15.2.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="virtualenv-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools"
|
|
pycompile_module="virtualenv.py"
|
|
short_desc="Virtual Python2 environment builder"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://virtualenv.pypa.io/"
|
|
license="MIT"
|
|
distfiles="${PYPI_SITE}/v/virtualenv/virtualenv-${version}.tar.gz"
|
|
checksum=1d7e241b431e7afce47e77f8843a276f652699d1fa4f93b9d8ce0076fd7b0b54
|
|
alternatives="virtualenv:virtualenv:/usr/bin/virtualenv2"
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
|
|
python3-virtualenv_package() {
|
|
noarch=yes
|
|
depends="python3-setuptools"
|
|
pycompile_module="virtualenv.py"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="virtualenv:virtualenv:/usr/bin/virtualenv3"
|
|
pkg_install() {
|
|
vmove usr/bin/virtualenv3
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
}
|