Adding GL4Dummies
This commit is contained in:
parent
3521f0bae4
commit
ae07253c2d
2 changed files with 18 additions and 0 deletions
|
@ -61,3 +61,7 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
|
|||
```bash
|
||||
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installSyncthing.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
||||
```
|
||||
- Installe [GL4Dummies](https://gl4d.api8.fr/FR/gl4d.pdf)
|
||||
```bash
|
||||
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installgl4D.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
||||
```
|
||||
|
|
14
installgl4D.sh
Normal file
14
installgl4D.sh
Normal file
|
@ -0,0 +1,14 @@
|
|||
# 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
|
Reference in a new issue