]> Creatis software - creaToolsTools.git/blob - Linux/scripts/Install-Creatools-Bin.sh-downloadTool
#3405 vtk8itk5wx3-macos
[creaToolsTools.git] / Linux / scripts / Install-Creatools-Bin.sh-downloadTool
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 
34                 OS=`awk 'NR==1{print $1}' /etc/system-release`
35                 if [ "$OS" == "" ] ; then 
36                         OS=$(lsb_release -i | awk '{print $3}')
37                 fi
38     else OS=""
39     fi
40 # checkDistrib $OS
41     echo $OS
42 }
43
44
45 OperatingSystem=`getDistrib`
46
47 echo 
48 echo
49 echo $OperatingSystem
50 echo
51   case "$OperatingSystem" in
52   Mandriva)
53         ARIA2EXIST=$(rpm -qa | grep aria2 | wc -l)      
54         if [ "$ARIA2EXIST" = "0" ]; then 
55              echo "Install aria2 (download tool) Root password:"
56              su -c "urpmi aria2"
57         fi
58         downloadCommand=aria2c 
59     ;;
60   Fedora)
61         ARIA2EXIST=$(rpm -qa | grep aria2 | wc -l)      
62         if [ "$ARIA2EXIST" = "0" ]; then 
63         echo "Install aria2 (download tool) Root password:"
64         su -c "dnf install aria2 -y"
65         fi
66         downloadCommand=aria2c
67     ;;
68   Debian)
69         WGETEXIST=$(dpkg -l | grep wget | wc -l)        
70         if [ "$WGETEXIST" = "0" ]; then 
71         echo "Install wget (download tool) Root password:"
72         su -c "apt-get --yes  install wget "
73         fi
74         downloadCommand=wget
75     ;;
76   Ubuntu)
77         WGETEXIST=$(dpkg -l | grep wget | wc -l)        
78         if [ "$WGETEXIST" = "0" ]; then 
79         echo "Install wget (download tool) Root password:"
80         su -c "apt-get --yes install wget"
81         fi
82           downloadCommand=wget 
83      ;;
84   MacOS)
85      ## port install curl -y
86      downloadCommand='curl -O ' 
87      ;;
88   *)
89      echo " '$OperatingSystem' : Unknown (for us...) Operating Sytem "
90      echo " Allowed values are (right now) Fedora, Ubuntu, MacOS "
91 //     exit 0
92      ;;
93   esac
94
95