]> Creatis software - creaToolsTools.git/blob - Linux/scripts/installmodNomake.sh
7910d159f27085fa67f6c2a885a5328e9c8777b1
[creaToolsTools.git] / Linux / scripts / installmodNomake.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
25 # $1 : useless for Linux (Release/Debug)
26 # $2 : name of source ex : crea
27 # $3 : generationdir ex : ~/myDefaultGenerationDir
28 # $4 : installPrefix
29
30 #
31 # For installing "bb..."
32 # without "make"
33 #
34
35 echo
36 echo
37 echo
38 echo "------------------------------------------in installmod-- $2 ------------"
39 echo $1
40 echo $2
41 echo $3
42 echo $4
43
44 #cd $3/creatools_bin/$2Bin
45 installPrefix=$4
46 # We install, now
47
48 pwd
49 #make install
50
51 if [ -e $installPrefix/lib64 ]
52 then
53    # grouik style patch JPR
54    #if [ $2 = "bbtk" ]
55    #then
56    #   echo export BBTK_DIR=$installPrefix/lib64/creatools/$2   >> $installPrefix/share/creatools_base_library_config.sh
57    #else
58       echo export $2_DIR='$'installPrefix/lib64/creatools/$2     >> $installPrefix/share/creatools_base_library_config.sh
59       echo export bb$2_DIR='$'installPrefix/lib64/creatools/bb$2 >> $installPrefix/share/creatools_base_library_config.sh      
60    #fi
61 fi
62
63 if [ -e $installPrefix/lib ]
64 then
65    # grouik style patch JPR
66 #   if [ $2 = "bbtk" ]
67 #   then
68 #      echo "export BBTK_DIR=$installPrefix/lib/creatools/$2"   >> $installPrefix/share/creatools_base_library_config.sh
69 #   else
70       echo "export $2_DIR='$'installPrefix/lib/creatools/$2"     >> $installPrefix/share/creatools_base_library_config.sh
71       echo "export bb$2_DIR='$'installPrefix/lib/creatools/bb$2" >> $installPrefix/share/creatools_base_library_config.sh    
72 #   fi
73    
74 else
75    echo "============================= NEITHER $installPrefix/lib64 NOR installPrefix/lib EXIST ?!?"
76 fi
77 cd ../..
78 pwd
79