]> Creatis software - creaToolsTools.git/blob - Linux/scripts/Install-Creatools-Bin.sh
#3044 creaToolsTools Bug New Normal - Fedora 24 ThirdParty library conflict with...
[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      echo Root password:
52      su -c "yum install aria2 -y"
53           downloadCommand=aria2c
54      ;;
55   Ubuntu)
56      echo Root password:
57      su -c "apt-get --yes install wget"
58           downloadCommand=wget 
59      ;;
60   MacOS)
61      port install curl -y
62           downloadCommand=curl 
63      ;;
64   *)
65      echo " '$OperatingSystem' : Unknown (for us...) Operating Sytem "
66      echo " Allowed values are (right now) Fedora, Ubuntu, MacOS "
67 //     exit 0
68      ;;
69   esac
70
71 CREATOOLSBINDIR=Creatools-Bin
72 rm -rf $CREATOOLSBINDIR
73 mkdir $CREATOOLSBINDIR
74 cd $CREATOOLSBINDIR
75 $downloadCommand http://www.creatis.insa-lyon.fr/software/public/creatools/creaTools/creatools-Linux-Bin.sh
76 source creatools-Linux-Bin.sh
77 cd ..
78
79