mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-12 05:20:37 +00:00
14 lines
332 B
Plaintext
14 lines
332 B
Plaintext
# description : The PyPA recommended tool for installing Python packages
|
|
# depends : python3 python3-setuptools
|
|
|
|
name=python3-pip
|
|
version=20.3.1
|
|
release=1
|
|
source="https://pypi.io/packages/source/p/pip/pip-${version}.tar.gz"
|
|
|
|
build() {
|
|
cd pip-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --prefix=/usr --root="$PKG"
|
|
}
|