]> Creatis software - creaToolsTools.git/blob - Linux/scripts/Install-Creatools-Bin.sh
#3424 creaToolsTools Feature New Normal - Clean Install Linux
[creaToolsTools.git] / Linux / scripts / Install-Creatools-Bin.sh
1 # ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
4 #                        pour la Santé)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 #
7 #  This software is governed by the CeCILL-B license under French law and 
8 #  abiding by the rules of distribution of free software. You can  use, 
9 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
10 #  license as circulated by CEA, CNRS and INRIA at the following URL 
11 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
12 #  or in the file LICENSE.txt.
13 #
14 #  As a counterpart to the access to the source code and  rights to copy,
15 #  modify and redistribute granted by the license, users are provided only
16 #  with a limited warranty  and the software's author,  the holder of the
17 #  economic rights,  and the successive licensors  have only  limited
18 #  liability. 
19 #
20 #  The fact that you are presently reading this means that you have had
21 #  knowledge of the CeCILL-B license and that you accept its terms.
22 # ------------------------------------------------------------------------  
23
24 #!/bin/bash -e
25
26 ###########################################
27 function getDistrib {
28     local OS=`uname`
29
30       if [ "$OS" == Darwin ] ; then OS=MacOS;
31 ##EED2016-10-15    
32 ##    elif [ "$OS" == Linux  ] ; then OS=$(lsb_release -i | awk '{print $3}')
33         elif [ "$OS" == Linux  ] ; then OS=`awk 'NR==1{print $1}' /etc/system-release`
34
35     else OS=""
36     fi
37 # checkDistrib $OS
38     echo $OS
39 }
40
41
42 OperatingSystem=`getDistrib`
43
44   case "$OperatingSystem" in
45   Mandriva)
46      echo Root password:
47      su -c "urpmi aria2"
48           downloadCommand=aria2c 
49      ;;
50   Fedora)
51         ARIA2EXIST=$(rpm -qa | grep aria2 | wc -l)      
52         if [ "$ARIA2EXIST" -eq '1' ]; then 
53         echo Root password:
54         su -c "dnf install aria2 -y"
55         fi
56         downloadCommand=aria2c
57     ;;
58   Ubuntu)
59      echo Root password:
60      su -c "apt-get --yes install wget"
61           downloadCommand=wget 
62      ;;
63   MacOS)
64      port install curl -y
65           downloadCommand=curl 
66      ;;
67   *)
68      echo " '$OperatingSystem' : Unknown (for us...) Operating Sytem "
69      echo " Allowed values are (right now) Fedora, Ubuntu, MacOS "
70 //     exit 0
71      ;;
72   esac
73
74 CREATOOLSBINDIR=Creatools-Bin
75 rm -rf $CREATOOLSBINDIR
76 mkdir $CREATOOLSBINDIR
77 cd $CREATOOLSBINDIR
78 $downloadCommand http://www.creatis.insa-lyon.fr/software/public/creatools/creaTools/creatools-Linux-Bin.sh
79 source creatools-Linux-Bin.sh
80 cd ..
81
82