]> Creatis software - creaToolsTools.git/blob - Linux/scripts/CreaTools-GenerateBinTGZ.sh
#2493 creaToolsTools Feature New Normal - Prepare and Install binary CreaTools...
[creaToolsTools.git] / Linux / scripts / CreaTools-GenerateBinTGZ.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
25
26 # JPR 2/5/2011
27 #if [ $UID = 0 ] 
28 #then
29   # Set all local variables
30   scriptDir=`pwd`/scripts
31 ##  cd $scriptsDir
32   source scripts/LocalFunctions.sh
33 ##  cd $scriptsDir
34   source scripts/CreaTools-configure.sh
35
36
37   if [ -e $generationdir ]
38   then
39
40           cd $generationdir
41           source creatools_install/share/creatools/Version.sh 
42           distanceAdress=davila@tux.creatis.insa-lyon.fr:creatools/creaTools/v$creatoolsMajorVersion.$creatoolsMinorVersion.x/
43 echo distanceAdress:
44 echo $distanceAdress
45
46      fileTGZ=CreaTools-Bin-Release-$creatoolsMajorVersion.$creatoolsMinorVersion.$creatoolsBuildVersion-`getDistrib`-`getDistribVersion`.tgz
47           fileTGZstring=CreaTools-Bin-Release-\$creatoolsMajorVersion.\$creatoolsMinorVersion.\$creatoolsBuildVersion-\`getDistrib\`-\`getDistribVersion\`
48
49      tar -cvzf $fileTGZ creatools_install thirdparty_install
50           scp $fileTGZ $distanceAdress/$fileTGZ 
51
52           filename_BinVersion=creatools-Linux-Bin-$creatoolsMajorVersion.$creatoolsMinorVersion.$creatoolsBuildVersion.sh
53
54           echo "##" > $filename_BinVersion
55           echo "## Generated by CreaTools-GeneratedBinTGZ.sh" >> $filename_BinVersion
56           echo "##" >> $filename_BinVersion
57
58           cat creatools_install/share/creatools/Version.sh >> $filename_BinVersion
59           cat creatools_install/share/creatools/LocalFunctions.sh >> $filename_BinVersion
60
61           echo "\`getDownloadCommand\` http://www.creatis.insa-lyon.fr/software/public/creatools/creaTools/v\$creatoolsMajorVersion.\$creatoolsMinorVersion.x/$fileTGZstring.tgz" >> $filename_BinVersion 
62           echo "tar -xvzf $fileTGZstring.tgz" >>  $filename_BinVersion
63           echo "rm -f $fileTGZstring.tgz" >>  $filename_BinVersion
64          
65
66 #EED     echo "source creatools_install/share/creatools/LocalFunctions.sh"  >>  $filename_BinVersion
67      echo "ETC_BASHRC=\`getbashrc\`" >>  $filename_BinVersion
68      echo "installPrefix=\$(pwd)/creatools_install #You need this variable in the -barshrc script" >>  $filename_BinVersion
69      echo "installPrefixThird=\$(pwd)/thirdparty_install #You need this variable in the -barshrc script" >>  $filename_BinVersion
70      echo "OperatingSystem=\`getDistrib\`  #You need this variable in the Base-Stuff script" >>  $filename_BinVersion
71
72      echo "cd thirdparty_install/share/creatools/"  >>  $filename_BinVersion
73      echo "source ThirdParty-install-Base-Stuff.sh \$OperatingSystem"  >>  $filename_BinVersion
74      echo "cd ../../.."  >>  $filename_BinVersion
75
76      echo "source thirdparty_install/share/creatools/ThirdParty-bashrc.sh"  >>  $filename_BinVersion
77      echo "source creatools_install/share/creatools/CreaTools-bashrc.sh"  >>  $filename_BinVersion
78
79      echo "echo $fileTGZstring >> Creatools-Bin-Version.txt " >>  $filename_BinVersion
80
81      echo "echo  " >>  $filename_BinVersion
82      echo "echo  " >>  $filename_BinVersion
83      echo "echo  " >>  $filename_BinVersion
84      echo "echo  " >>  $filename_BinVersion
85      echo "echo 'Open a new terminal to run creatools.'" >>  $filename_BinVersion
86      echo "echo '(Close this window and continue....)' " >>  $filename_BinVersion
87      echo "echo  " >>  $filename_BinVersion
88      echo "echo  " >>  $filename_BinVersion
89      echo "echo  Install dir:" >>  $filename_BinVersion
90      echo "pwd"    >>  $filename_BinVersion
91      echo "echo  " >>  $filename_BinVersion
92      echo "read -p 'Press [Enter] key to continue...'" >>  $filename_BinVersion
93      scp $filename_BinVersion $distanceAdress/. 
94
95      cd $scriptsDir
96      scp $scriptDir/Install-Creatools-Bin.sh $distanceAdress/Install-Creatools-Bin-Release-$creatoolsMajorVersion.$creatoolsMinorVersion.$creatoolsBuildVersion.sh
97           
98           ssh davila@tux.creatis.insa-lyon.fr "cd creatools/creaTools;rm Install-Creatools-Bin-Release.sh;  ln -s v2.6.x/Install-Creatools-Bin-Release-$creatoolsMajorVersion.$creatoolsMinorVersion.$creatoolsBuildVersion.sh  Install-Creatools-Bin-Release.sh"
99
100           ssh davila@tux.creatis.insa-lyon.fr "cd creatools/creaTools;rm creatools-Linux-Bin.sh;  ln -s v2.6.x/$filename_BinVersion  creatools-Linux-Bin.sh"
101
102      echo ""
103      echo ""
104      echo ""
105      echo "Creation OK:"
106      echo $fileTGZ
107      echo ""
108      echo $PWD
109         
110   else
111    echo
112    echo "..ERROR.."
113    echo "==================================================="
114    echo "REMEMBER !"
115    echo ""
116    echo "You MUST run before:"
117    echo "   > ./instalscript config"
118    echo "   > ./instalscript 3rd"
119    echo "   > ./instalscript creatools"
120    echo "==================================================="
121    echo
122    echo 
123    read a
124    exit 0 
125   fi  
126   
127
128