blob: 2fcad7eb664aff23715cdacccc8bdb53d9ce3afb (
plain)
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
|
#!/bin/sh
_init() {
variables=(
"G4ABLADATA" \
"G4ENSDFSTATEDATA" \
"G4INCLDATA" \
"G4LEDATA" \
"G4LEVELGAMMADATA" \
"G4NEUTRONHPDATA" \
"G4PARTICLEXSDATA" \
"G4PIIDATA" \
"G4RADIOACTIVEDATA" \
"G4REALSURFACEDATA" \
"G4SAIDXSDATA" \
)
shell=("sh" "csh")
existing_out="existing_out" # out-of-source compilation
existing_in="existing_in" # in-source compilation
path="/usr/bin"
}
_clean(){
for _ext in ${shell[*]}
do
rm -f $existing_out.${_ext}
rm -f $existing_in.${_ext}
done
}
_read() {
_init
for _varname in ${variables[*]}
do
for _ext in ${shell[*]}
do
if [ -f ${path}/geant4.${_ext} ]; then
sed -n /${_varname}/p ${path}/geant4.${_ext} >> $existing_out.${_ext}
fi
if [ -f ${path}/geant4make.${_ext} ]; then
sed -n /${_varname}/p ${path}/geant4make.${_ext} >> $existing_in.${_ext}
fi
done
done
}
_keep() {
_init
for _ext in ${shell[*]}
do
cat $existing_out.${_ext} >> ${path}/geant4.${_ext}
cat $existing_in.${_ext} >> ${path}/geant4make.${_ext}
done
_clean
}
pre_upgrade() {
_read
}
post_upgrade() {
_keep
}
|