-
Notifications
You must be signed in to change notification settings - Fork 1
/
installer.sh
64 lines (59 loc) · 1.19 KB
/
installer.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/bash
function showHelp() {
clear
echo "Opciones:"
echo "i: Instala el juego"
echo "d: Desinstala el juego"
echo "h: Muestra esta ayuda"
echo "q: Cierra el instalador"
}
function install() {
clear
echo "~~~~~~~ INSTALACIÓN DEL JUEGO ~~~~~~~"
rm -rf build
mkdir build
cd build || (echo "Ocurrió un error durante la instalacion. Terminando" && exit)
cmake .. -DINSTALL=ON
make
sudo make install
}
function uninstall() {
clear
echo "~~~~~~~ DESINSTALANDO ~~~~~~~"
echo "Removiendo binarios..."
sudo rm /usr/local/bin/l4dclient /usr/local/bin/l4dserver
echo "Removiendo bibliotecas..."
sudo rm /usr/local/lib/libSDL2pp.so*
echo "Removiendo assets..."
sudo rm -rf /var/games/l4d/
}
clear
showHelp
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
printf "> Ingrese una opción: "
while true; do
read option
clear
echo ""
case $option in
i)
install
;;
d)
uninstall
;;
h)
showHelp
;;
q)
clear
exit 0
;;
*)
echo "Ingresó una opcion que no es valida. Puede ver ayuda con 'h'."
;;
esac
echo
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
printf "> Ingrese una opción: "
done