void-packages/srcpkgs/python-pip/template
2019-09-13 08:17:37 +02:00

34 lines
885 B
Bash

# Template file for 'python-pip'
pkgname=python-pip
version=19.2.3
revision=1
archs=noarch
wrksrc="pip-${version}"
build_style=python-module
pycompile_module="pip"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools"
short_desc="PyPA recommended tool for installing PyPI packages (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
license="MIT"
homepage="https://pip.pypa.io/"
distfiles="${PYPI_SITE}/p/pip/pip-${version}.tar.gz"
checksum=e7a31f147974362e6c82d84b91c7f2bdf57e4d3163d3d454e6c3e71944d67135
alternatives="pip:pip:/usr/bin/pip2"
post_install() {
vlicense LICENSE.txt
}
python3-pip_package() {
archs=noarch
pycompile_module="pip"
depends="python3-setuptools"
short_desc="${short_desc/Python2/Python3}"
alternatives="pip:pip:/usr/bin/pip3"
pkg_install() {
vmove usr/bin/pip3
vmove usr/lib/python3*
vlicense LICENSE.txt
}
}