mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 19:44:47 +00:00
15 lines
374 B
Plaintext
15 lines
374 B
Plaintext
# description : The PyPA recommended tool for installing Python packages
|
|
# depends : python3 python3-setuptools
|
|
|
|
name=python3-pip
|
|
version=19.0.3
|
|
release=1
|
|
source=(https://pypi.io/packages/source/p/pip/pip-${version}.tar.gz)
|
|
md5sum=(1c5edb0924a0d7d79f3a2e3df05009b4)
|
|
|
|
build() {
|
|
cd pip-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --prefix=/usr --root="$PKG"
|
|
}
|