mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
18 lines
497 B
Plaintext
18 lines
497 B
Plaintext
# description : Easily download, build, install, upgrade, and uninstall Python packages
|
|
# depends : python2
|
|
|
|
name=python2-setuptools
|
|
version=45.1.0
|
|
release=1
|
|
source="https://files.pythonhosted.org/packages/source/s/${name#*-}/${name#*-}-$version.zip"
|
|
|
|
build() {
|
|
cd setuptools-$version
|
|
|
|
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
|
|
python2 bootstrap.py
|
|
python2 setup.py build
|
|
python2 setup.py install --prefix=/usr --root="$PKG" --optimize=1 --skip-build
|
|
rm $PKG/usr/bin/easy_install
|
|
}
|