mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
14 lines
355 B
Plaintext
14 lines
355 B
Plaintext
# description : The PyPA recommended tool for installing Python packages
|
|
# depends : python3 python3-setuptools
|
|
|
|
name=python3-pip
|
|
version=23.3.2
|
|
release=1
|
|
source="$name-$version.tar.gz::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"
|
|
}
|