This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
raylib-python-cffi/raylib/static/build_linux_multi.sh
2021-01-16 17:15:13 +00:00

23 lines
487 B
Bash
Executable file

#!/usr/bin/env bash
if ! command -v pyenv &> /dev/null
then
echo "Pyenv required: https://github.com/pyenv/pyenv-installer"
exit
fi
rm *linux-gnu.so
pyenv install -s 3.9.1
pyenv global 3.9.1
pip3 install cffi
python build_linux.py
pyenv install -s 3.8.7
pyenv global 3.8.7
pip3 install cffi
python build_linux.py
pyenv install -s 3.7.9
pyenv global 3.7.9
pip3 install cffi
python build_linux.py
pyenv install -s 3.6.12
pyenv global 3.6.12
pip3 install cffi
python build_linux.py