-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
135 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/bin/bash | ||
# | ||
# AlFa package installation script | ||
# [email protected], Sept. 2014 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
#!/bin/bash | ||
#!/bin/bash | ||
# | ||
# CBM package compilation script | ||
# [email protected], June 2006 | ||
# [email protected], June 2006 | ||
# update of the script | ||
# include debug version and | ||
# include debug version and | ||
# intel compiler switches | ||
# [email protected], July 2007 | ||
|
||
# debug options on :set -xv | ||
# debug options off:set +xv | ||
# | ||
# | ||
set +xv | ||
|
||
# unset ROOTSYS. If it is set this can make problems when compiling Geant3 | ||
|
@@ -178,7 +178,7 @@ create_installation_directories | |
|
||
######################## CMake ################################ | ||
# This is only for safety reasons. If we find a machine where | ||
# cmake is not installed, we install cmake and add the path | ||
# cmake is not installed, we install cmake and add the path | ||
# to the environment variable PATH | ||
|
||
if [ "$check" = "1" ]; | ||
|
@@ -190,54 +190,54 @@ fi | |
|
||
if [ "$check" = "1" ]; | ||
then | ||
source scripts/install_gtest.sh | ||
source scripts/install_gtest.sh | ||
fi | ||
|
||
############ GNU scientific library ############################### | ||
|
||
if [ "$check" = "1" ]; | ||
then | ||
source scripts/install_gsl.sh | ||
source scripts/install_gsl.sh | ||
fi | ||
|
||
############ ICU libraries ############################### | ||
|
||
if [ "$check" = "1" -a "$compiler" = "Clang" -a "$platform" = "linux" ]; | ||
then | ||
source scripts/install_icu.sh | ||
source scripts/install_icu.sh | ||
fi | ||
|
||
############ Boost libraries ############################### | ||
|
||
if [ "$check" = "1" ]; | ||
then | ||
source scripts/install_boost.sh | ||
source scripts/install_boost.sh | ||
fi | ||
|
||
##################### Pythia 6 ############################################# | ||
|
||
if [ "$check" = "1" -a "$onlyreco" = "0" ]; | ||
then | ||
source scripts/install_pythia6.sh | ||
source scripts/install_pythia6.sh | ||
fi | ||
|
||
##################### HepMC ## ############################################# | ||
|
||
if [ "$check" = "1" -a "$onlyreco" = "0" ]; | ||
then | ||
source scripts/install_hepmc.sh | ||
source scripts/install_hepmc.sh | ||
fi | ||
|
||
##################### Pythia 8 ############################################# | ||
|
||
if [ "$check" = "1" -a "$onlyreco" = "0" ]; | ||
then | ||
source scripts/install_pythia8.sh | ||
source scripts/install_pythia8.sh | ||
fi | ||
|
||
##################### XercesC ############################################# | ||
|
||
if [ "$build_python" = "yes" ]; | ||
if [ "$build_python" = "yes" ]; | ||
then | ||
if [ "$check" = "1" -a "$onlyreco" = "0" ]; | ||
then | ||
|
@@ -249,7 +249,7 @@ fi | |
|
||
if [ "$check" = "1" -a "$compiler" = "Clang" -a "$platform" = "linux" ]; | ||
then | ||
source scripts/install_mesa.sh | ||
source scripts/install_mesa.sh | ||
fi | ||
|
||
##################### GEANT 4 ############################################# | ||
|
@@ -275,7 +275,7 @@ fi | |
|
||
##################### G4Py ############################################# | ||
|
||
if [ "$build_python" = "yes" ]; | ||
if [ "$build_python" = "yes" ]; | ||
then | ||
if [ "$check" = "1" -a "$onlyreco" = "0" ]; | ||
then | ||
|
@@ -356,4 +356,4 @@ then | |
else | ||
echo "*** End installation of external packages with Errors***" | tee -a $logfile | ||
exit 42 | ||
fi | ||
fi |
Oops, something went wrong.