-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·67 lines (61 loc) · 2.15 KB
/
install.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
65
66
67
#!/bin/bash
RED='\033[0;31m'
YELLOW='\033[1;33m'
GREEN='\033[0;32m'
done=0
declare -A osInfo;
osInfo[/etc/redhat-release]=dnf
osInfo[/etc/gentoo-release]=emerge
osInfo[/etc/SuSE-release]=zypp
osInfo[/etc/debian_version]=apt-get
osInfo[/etc/alpine-release]=apk
osInfo[/etc/arch-release]=pacman
for f in ${!osInfo[@]}
do
## Instalamos las librerias necesarias
if [[ -f $f ]];then
echo Package manager: ${osInfo[$f]}
case ${osInfo[$f]} in
apt-get)
sudo apt-get install -y freeglut3 freeglut3-dev libjpeg-dev libopenmpi-dev openmpi-bin openmpi-doc libxmu-dev libxi-dev cmake libboost-all-dev
done=1
;;
dnf)
sudo dnf install -y freeglut-devel libjpeg-turbo-devel openmpi-devel libXmu-devel libXi-devel cmake boost-devel
sed -i '62s/.*/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -std=c++11 -lglut")/' CMakeLists.txt
done=1
;;
pacman)
sudo pacman -Sy freeglut libjpeg openmpi openmpi libxmu libxi boost cmake
sed -i '62s/.*/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -std=c++11 -lglut")/' CMakeLists.txt
done=1
;;
*)
printf "${RED}<=========================AVISO=========================>
La instalación por defecto no está disponible. Por favor, instale manualmente las librerías necesarias.
Tenga en cuenta que el nombre de las librerías puede variar dependiendo de la distribución.\n\n"
printf " ${YELLOW}>>> LIBRERIAS:
- freeglut3
- freeglut3-dev
- libjpeg-dev
- libopenmpi-dev
- openmpi-bin
- openmpi-doc
- libxmu-dev
- libxi-dev
- cmake
- libboost-all-dev"
;;
esac
fi
if [ $done -eq 1 ]; then
## Creamos el makefile para nuestra máquina
cmake -DCMAKE_BUILD_TYPE=Debug . # con el flag de depuración activo
# cmake -DCMAKE_BUILD_TYPE=Release . # sin información de depuración
## Compilamos!
make
if [ $? -eq 0 ]; then
printf "${GREEN} >>> INSTALACIÓN Y COMPILACIÓN CORRECTA \n"
fi
fi
done