void-packages/srcpkgs/python-pip/template
2015-06-04 09:33:31 +02:00

41 lines
1,021 B
Bash

# Template file for 'python-pip'
pkgname=python-pip
version=7.0.3
revision=1
noarch=yes
wrksrc="pip-${version}"
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-setuptools python3.4-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=b4c598825a6f6dc2cac65968feb28e6be6c1f7f1408493c60a07eaa731a0affd
pre_build() {
sed -i '1d' pip/__init__.py
}
post_install() {
rm -f ${DESTDIR}/usr/bin/pip
ln -sf pip2.7 ${DESTDIR}/usr/bin/pip
vlicense LICENSE.txt LICENSE
}
python3.4-pip_package() {
noarch=yes
depends="python3.4-setuptools"
pycompile_version="3.4"
pycompile_module="pip"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/bin/pip3
vmove usr/bin/pip3.4
vmove usr/lib/python3.4
vlicense LICENSE.txt LICENSE
}
}