mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
16 lines
448 B
Plaintext
16 lines
448 B
Plaintext
# description : Easily download, build, install, upgrade, and uninstall Python packages
|
|
# depends : python3
|
|
|
|
name=python3-setuptools
|
|
version=65.5.0
|
|
release=1
|
|
source="https://files.pythonhosted.org/packages/source/s/${name#*-}/${name#*-}-$version.tar.gz"
|
|
|
|
build() {
|
|
cd setuptools-$version
|
|
|
|
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
|
|
python3 setup.py build
|
|
python3 setup.py install --prefix=/usr --root="$PKG" --optimize=1 --skip-build
|
|
}
|