X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Linux%2Finstallscript;h=ee91e138a03697681200009eef8ce56982137ad7;hb=be3ecca8f693fc77904d72ffd79533262a78cd51;hp=09dbd74192b1a61dda716853c2f89952d85fcfdb;hpb=f3ad98c62414e3eb28d8f0330cc16e4e3708e508;p=creaToolsTools.git diff --git a/Linux/installscript b/Linux/installscript index 09dbd74..ee91e13 100755 --- a/Linux/installscript +++ b/Linux/installscript @@ -159,9 +159,6 @@ ITKVersion=ITK3 export ETC_BASHRC=~/.bashrc - - - function usage { echo "installscript [options] command" echo "creatools configure/compile/install script" @@ -173,29 +170,31 @@ function usage { echo " command:" echo "" echo " as a normal user:" - echo " config : set the configuration parameters only" + echo " config : set the configuration parameters only" echo " " echo " need root password:" - echo " 3rd : Get, Compile, Install all 3rd party library " - echo " 3rd-base : Install basic tools (cmake, doxygen...)" - echo " 3rd-vtk : Get, Compile, Install vtk" - echo " 3rd-itk : Get, Compile, Install itk" - echo " 3rd-gdcm : Get, Compile, Install gdcm" - echo " 3rd-wx : Get, Compile, Install wx widget (for Mac Users)" + echo " 3rd : Get, Compile, Install all 3rd party library " + echo " 3rd-base : Install basic tools (cmake, doxygen...)" + echo " 3rd-vtk : Get, Compile, Install vtk" + echo " 3rd-itk : Get, Compile, Install itk" + echo " 3rd-gdcm : Get, Compile, Install gdcm" + echo " 3rd-wx : Get, Compile, Install wx widget (for Mac Users)" echo " " echo " as a normal user:" - echo " creatools : Get Compile and Install the CreaTools" - echo " creatools-get : Get the CreaTools" - echo " creatools-cmp : Compile the CreaTools" - echo " creatools-install : Install the CreaTools" + echo " creatools : Get Compile and Install the CreaTools" + echo " creatools-get : Get the CreaTools" + echo " creatools-cmp : Compile the CreaTools" + echo " creatools-install : Install the CreaTools" echo " " - echo " uninstall : uninstall the creatools" + echo " creatools-generateBinTGZ : generation of CreaTools.tgz (binary version)" echo " " - echo " printconfig : print the configuration" - echo " help : print help" - echo " env : print some environnement variables" + echo " uninstall : uninstall the creatools" + echo " " + echo " printconfig : print the configuration" + echo " help : print help" + echo " env : print some environnement variables" echo "" - echo " all : configure / compile / install" + echo " all : configure / compile / install" echo " " echo " " echo " " @@ -246,7 +245,7 @@ if [ $# -le 0 ] ; then usage; fi command=$1 # check that command is valid -if [ `checkVal $command all config 3rd 3rd-base 3rd-vtk 3rd-itk 3rd-gdcm 3rd-wx creatools creatools-get creatools-cmp creatools-install uninstall printconfig help env` == "false" ] ; then +if [ `checkVal $command all config 3rd 3rd-base 3rd-vtk 3rd-itk 3rd-gdcm 3rd-wx creatools creatools-get creatools-cmp creatools-install creatools-generateBinTGZ uninstall printconfig help env` == "false" ] ; then echo "Unrecognized command: $command" echo "" usage @@ -357,8 +356,6 @@ if [ `checkVal $command all 3rd 3rd-base` == true ] ; then bash scripts/ThirdParty-install.sh fi - - # vtk if [ `checkVal $command all 3rd 3rd-vtk` == true ] ; then bigDisplay "INSTALL VTK" @@ -425,13 +422,18 @@ if [ `checkVal $command all creatools creatools-install` == true ] ; then echo " " echo " " echo " " - echo "Close this window and continue...." - echo " " + echo "Open a new terminal to run creatools." + echo "(Close this window and continue....) " echo " " echo " " read -p "Press [Enter] key to continue..." fi +#generate TGZ version of the bin (Creatools and ThirdParty) +if [ `checkVal $command creatools-generateBinTGZ` == true ] ; then + bash scripts/CreaTools-GenerateBinTGZ.sh +fi + ################################################################################## uninstall if [ `checkVal $command uninstall` == true ] ; then bigDisplay "UNINSTALL CREATOOLS"