mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
16 lines
402 B
Plaintext
16 lines
402 B
Plaintext
# description : The PyPA recommended tool for installing Python packages
|
|
# depends : python2 python2-setuptools
|
|
|
|
name=python2-pip
|
|
version=19.2.3
|
|
release=1
|
|
source=(https://pypi.io/packages/source/p/pip/pip-${version}.tar.gz)
|
|
md5sum=(f417444c66a0db1a82c8d9d2283a2f95)
|
|
|
|
build() {
|
|
cd pip-$version
|
|
python2 setup.py build
|
|
python2 setup.py install --prefix=/usr --root="$PKG"
|
|
mv $PKG/usr/bin/pip{,-py2}
|
|
}
|