mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-12 21:40:22 +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.1.1
|
|
release=1
|
|
source=(https://pypi.io/packages/source/p/pip/pip-${version}.tar.gz)
|
|
md5sum=(4fb98a060f21c731d6743b90a714fc73)
|
|
|
|
build() {
|
|
cd pip-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --prefix=/usr --root="$PKG"
|
|
}
|