-
Notifications
You must be signed in to change notification settings - Fork 25
/
sourceme.sh
81 lines (66 loc) · 2.21 KB
/
sourceme.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
#
# If you use bash/zsh/ksh:
#
# do a source sourceme.sh to initialize the correct PATHS for magic
#
if [ -z $MAGIC_HOME ]; then
unset _sourceme # tabula rasa without MAGIC_HOME
#
# Try to identify position of the code's home directory:
#
if [ `grep 'ksh' <<< $SHELL` ]; then
_sourcecmd="${.sh.file}"
else
_sourcecmd="${BASH_SOURCE:-$0}"
fi
while [ -h "$_sourcecmd" ]; do # resolve $_sourcecmd until the file is no longer a symlink
_dir="$( cd -P "$( dirname "$_sourcecmd" )" && pwd )"
_sourcecmd="$(readlink "$_sourcecmd")"
[[ $_sourcecmd != /* ]] && _sourcecmd="$_dir/$_sourcecmd" # if $_sourcecmd was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
_dir="$( cd -P "$( dirname "$_sourcecmd" )" && pwd )"
if ( [ -e $_dir/sourceme.sh ] && \
[ -d $_dir/src ] && \
[ -d $_dir/samples ] && \
[ -d $_dir/bin ] \
); then
unset cd # some people are crazy enough to overload cd
MAGIC_HOME=$_dir
echo $MAGIC_HOME
export MAGIC_HOME
fi
unset _dir
if [ -z $MAGIC_HOME ]; then # no success
echo "sourceme.sh: Cannot locate home directory of MAGIC"
echo " Try sourcing me from the home directory itself, or set MAGIC_HOME"
fi
fi
if [ -z $_sourceme_quiet ]; then echo "MAGIC_HOME = <$MAGIC_HOME>"; fi
if [ -z $_sourceme ]; then # called for the first time?
# CDPATH="./:../:../../:../../../:$HOME"
if [ -n $MAGIC_HOME ]; then
# Set shell path
if [ -z $_sourceme_quiet ]; then echo "Adding $MAGIC_HOME to PATH"; fi
PATH=${PATH}:$MAGIC_HOME/bin:$MAGIC_HOME/src
# Set PYTHONPATH
if [ -z $PYTHONPATH ]; then
PYTHONPATH="$MAGIC_HOME/python:$PWD/python"
else
PYTHONPATH="$PYTHONPATH:$MAGIC_HOME/python:$PWD/python"
fi
# Remember that sourceme has been successfully run
_sourceme="set"
export PATH PYTHONPATH
else
if [ -n $MAGIC_HOME ]; then
echo "Not adding $MAGIC_HOME/bin to PATH: not a directory"
fi
fi
# For reading binary outputs
#export F_UFMTENDIAN='big'
#export GFORTRAN_CONVERT_UNIT='big_endian'
fi
if [ -n $MAGIC_HOME ]; then
$MAGIC_HOME/bin/autoConfigPython.sh
fi