forked from cepc/CEPCSW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
56 lines (43 loc) · 1.17 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
##############################################################################
# Setup script for CEPCSW:
# - setup the external libraries
#
# Usage:
# $ source setup.sh
#
# Author: Tao Lin <[email protected]>
##############################################################################
function info:() {
echo "INFO: $*" 1>&2
}
function error:() {
echo "ERROR: $*" 1>&2
}
function lcg-version() {
echo ${CEPCSW_LCG_VERSION}
}
function cepcsw-base() {
echo /cvmfs/cepcsw.ihep.ac.cn/prototype
}
function cepcsw-external() {
echo $(cepcsw-base)/releases/externals/$(lcg-version)
}
function setup-external() {
local f=$(cepcsw-external)/setup-${CEPCSW_LCG_VERSION}.sh
if [ ! -f $f ]; then
error: "Failed to find setup script $f"
return
fi
info: "Setup CEPCSW externals: $f"
source $f
}
##############################################################################
# Parse the command line options
##############################################################################
# CEPCSW_LCG_VERSION=${1}; shift
if [ -z "$CEPCSW_LCG_VERSION" ]; then
CEPCSW_LCG_VERSION=101.0.1
fi
export CEPCSW_LCG_VERSION
setup-external