add patch version to bin

This commit is contained in:
Zach D. LAMAZIERE 2023-12-10 20:31:51 +01:00
parent aa6cb4359c
commit 2810b5740f
1 changed files with 3 additions and 1 deletions

View File

@ -18,12 +18,14 @@ compile-python()
local URL="https://www.python.org/ftp/python"
(
cd /tmp || return 1
[ -f $HOME/.local/bin/python${PY_VERSION} ] || return 2
wget -qO- "$URL/$PY_VERSION/Python-$PY_VERSION$BETA.tgz" | tar -xzf - || (
echo "Version '$PY_VERSION' not found, check on $URL."
echo "Ttrying something else." && compile-python `_get_last_patch $PY_VERSION`
)
[ -d "Python-$PY_VERSION$BETA" ] && (cd "Python-$PY_VERSION$BETA"; ./configure --prefix="$HOME/.local/" && make -j "$(nproc)" && make altinstall) &&
rm -r "Python-$PY_VERSION$BETA"
rm -r "Python-$PY_VERSION$BETA" &&
cp $HOME/.local/bin/python${PY_VERSION%.*} $HOME/.local/bin/python${PY_VERSION}
)
}