This repository has been archived on 2022-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
manjaroConfiguration/installgl4D.sh
2021-11-08 20:18:48 +01:00

14 lines
352 B
Bash

# On installe les dépendances
sudo apt update
sudo apt install libsdl2-dev git pkg-config automake autoconf libtool -y
# On télécharge et build GL4D
git clone https://github.com/noalien/GL4Dummies.git
cd GL4Dummies
make -f Makefile.autotools
./configure
make
# On installe GL4D
sudo make install
# On supprime le code source
cd ..
rm -rf GL4Dummies