-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall.sh
executable file
·78 lines (72 loc) · 1.45 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
68
69
70
71
72
73
74
75
76
77
#!/bin/bash
if [ -z $PYTHON ]
then
PYTHON=python2
fi
function install_help(){
echo "Ayuda del instalador $(basename $0)"
echo " Con este instalador puedes instalar:"
echo " gecod"
echo " gecoc"
echo " gtk-geco"
echo " web-geco"
echo ""
echo " Usalo pasando como argumento el nombre de lo que quieras instalar"
echo " por ejemplo:"
echo " sudo ./$(basename $0) gecod"
}
root=$PWD
if [ "$#" -eq 0 ]
then
install_help
exit 0
fi
while [ "$#" -gt 0 ]
do
case $1 in
-h | --help)
install_help
shift
;;
gecod)
cd $root
cd src/gecod/
echo "instalando gecod"
$PYTHON setup.py install
shift
;;
gecoc)
cd $root
cd src/gecoc/
echo "instalando gecoc"
$PYTHON setup.py install
shift
;;
gtk-geco)
cd $root
cd src/gecoc/
echo "instalando gecoc"
$PYTHON setup.py install
cd $root
cd src/gecoc/gtk-geco
echo "instalando gtk-geco"
$PYTHON setup.py install
shift
;;
web-geco)
cd $root
cd src/gecoc/
echo "instalando gecoc"
$PYTHON setup.py install
cd $root
cd src/gecoc/web-geco
echo "instalando web-geco"
$PYTHON setup.py install
shift
;;
*)
install_help
shift
;;
esac
done