void-packages/srcpkgs/python-pip/template
2018-03-26 19:23:19 +02:00

34 lines
900 B
Bash

# Template file for 'python-pip'
pkgname=python-pip
version=9.0.3
revision=1
noarch=yes
wrksrc="pip-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools"
pycompile_module="pip"
short_desc="The PyPA recommended tool for installing PyPI packages (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://pip.pypa.io/"
license="MIT"
distfiles="${PYPI_SITE}/p/pip/pip-${version}.tar.gz"
checksum=7bf48f9a693be1d58f49f7af7e0ae9fe29fd671cde8a55e6edca3581c4ef5796
alternatives="pip:pip:/usr/bin/pip2"
post_install() {
vlicense LICENSE.txt LICENSE
}
python3-pip_package() {
noarch=yes
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 LICENSE
}
}