-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·191 lines (163 loc) · 5.17 KB
/
install.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/bin/sh
set -e
# Install SBCL files into the usual places.
umask 022
bad_option() {
echo $1
echo "Enter \"$0 --help\" for list of valid options."
exit 1
}
for option
do
optarg_ok=true
# Split --foo=bar into --foo and bar.
case $option in
*=*)
# For ease of scripting skip valued options with empty
# values.
optarg=`expr "X$option" : '[^=]*=\(.*\)'` || optarg_ok=false
option=`expr "X$option" : 'X\([^=]*=\).*'`
;;
*)
optarg=""
;;
esac
case $option in
--prefix=)
$optarg_ok || bad_option "Bad argument for --prefix="
INSTALL_ROOT=$optarg
;;
--help | -help | -h)
cat <<EOF
--prefix=<path> Specify the install location.
See ./INSTALL for more information
EOF
exit 0
;;
*)
bad_option "Unknown command-line option to $0: \"$option\""
;;
esac
done
ensure_dirs ()
{
for j in "$@"; do
test -d "$j" || mkdir -p "$j"
done;
}
if [ "$OSTYPE" = "cygwin" -o "$OSTYPE" = "msys" ] ; then
RUNTIME=sbcl.exe
OLD_RUNTIME=sbcl.exe.old
else
RUNTIME=sbcl
OLD_RUNTIME=sbcl.old
fi
# Before doing anything else, make sure we have an SBCL to install
if [ -f src/runtime/$RUNTIME ]; then
if [ -f output/sbcl.core ]; then
true
else
echo "output/sbcl.core not found, aborting installation."
echo 'See ./INSTALL, the "SOURCE DISTRIBUTION" section'
exit 1
fi
else
echo "src/runtime/$RUNTIME not found, aborting installation."
echo 'See ./INSTALL, the "SOURCE DISTRIBUTION" section'
exit 1
fi
. output/prefix.def
DEFAULT_INSTALL_ROOT=$SBCL_PREFIX
INSTALL_ROOT=${INSTALL_ROOT:-$DEFAULT_INSTALL_ROOT}
MAN_DIR=${MAN_DIR:-"$INSTALL_ROOT"/share/man}
INFO_DIR=${INFO_DIR:-"$INSTALL_ROOT"/share/info}
DOC_DIR=${DOC_DIR:-"$INSTALL_ROOT"/share/doc/sbcl}
echo $INSTALL_ROOT
# Does the environment look sane?
if [ -n "$SBCL_HOME" -a "$INSTALL_ROOT/lib/sbcl" != "$SBCL_HOME" ];then
echo SBCL_HOME environment variable is set, and conflicts with INSTALL_ROOT.
echo Aborting installation. Unset one or reset the other, then try again
echo INSTALL_ROOT="$INSTALL_ROOT"
echo SBCL_HOME="$SBCL_HOME"
exit 1
fi
SBCL_HOME="$INSTALL_ROOT"/lib/sbcl
export SBCL_HOME INSTALL_ROOT
ensure_dirs "$BUILD_ROOT$INSTALL_ROOT" "$BUILD_ROOT$INSTALL_ROOT"/bin \
"$BUILD_ROOT$INSTALL_ROOT"/lib \
"$BUILD_ROOT$MAN_DIR" "$BUILD_ROOT$MAN_DIR"/man1 \
"$BUILD_ROOT$INFO_DIR" "$BUILD_ROOT$DOC_DIR" \
"$BUILD_ROOT$DOC_DIR"/html \
"$BUILD_ROOT$SBCL_HOME"
# move old versions out of the way. Safer than copying: don't want to
# break any running instances that have these files mapped
test -f "$BUILD_ROOT$INSTALL_ROOT"/bin/$RUNTIME && \
mv "$BUILD_ROOT$INSTALL_ROOT"/bin/$RUNTIME \
"$BUILD_ROOT$INSTALL_ROOT"/bin/$OLD_RUNTIME
test -f "$BUILD_ROOT$SBCL_HOME"/sbcl.core && \
mv "$BUILD_ROOT$SBCL_HOME"/sbcl.core "$BUILD_ROOT$SBCL_HOME"/sbcl.core.old
cp src/runtime/$RUNTIME "$BUILD_ROOT$INSTALL_ROOT"/bin/
cp output/sbcl.core "$BUILD_ROOT$SBCL_HOME"/sbcl.core
test -f src/runtime/libsbcl.so && \
cp src/runtime/libsbcl.so "$BUILD_ROOT$INSTALL_ROOT"/lib/
cp src/runtime/sbcl.mk "$BUILD_ROOT$SBCL_HOME"/sbcl.mk
for i in $(grep '^LIBSBCL=' src/runtime/sbcl.mk | cut -d= -f2-) ; do
cp "src/runtime/$i" "$BUILD_ROOT$SBCL_HOME/$i"
done
# installing contrib
ensure_dirs "$BUILD_ROOT$SBCL_HOME/contrib/"
cp obj/sbcl-home/contrib/* "$BUILD_ROOT$SBCL_HOME/contrib/"
echo
echo "SBCL has been installed:"
echo " binary $BUILD_ROOT$INSTALL_ROOT/bin/$RUNTIME"
echo " core and contribs in $BUILD_ROOT$INSTALL_ROOT/lib/sbcl/"
# Installing manual & misc bits of documentation
#
# Locations based on FHS 2.3.
# See: <http://www.pathname.com/fhs/pub/fhs-2.3.html>
#
# share/ architecture independent read-only things
# share/man/ manpages, should be the same as man/
# share/info/ info files
# share/doc/ misc documentation
echo
echo "Documentation:"
CP="cp -f"
# man
$CP doc/sbcl.1 "$BUILD_ROOT$MAN_DIR"/man1/ && echo " man $BUILD_ROOT$MAN_DIR/man1/sbcl.1"
# info
for info in doc/manual/*.info
do
test -e $info && $CP $info "$BUILD_ROOT$INFO_DIR"/ \
&& BN=`basename $info` \
&& DIRFAIL=`install-info --info-dir="$BUILD_ROOT$INFO_DIR" \
"$BUILD_ROOT$INFO_DIR"/$BN > /dev/null 2>&1 \
|| echo "(could not add to system catalog)"` \
&& echo " info $BUILD_ROOT$INFO_DIR/`basename $info` [$BUILD_ROOT$INFO_DIR/dir] $DIRFAIL"
done
for info in doc/manual/*.info-*
do
test -e $info && $CP $info "$BUILD_ROOT$INFO_DIR"/ \
&& echo " info $BUILD_ROOT$INFO_DIR/`basename $info`"
done
# pdf
for pdf in doc/manual/*.pdf
do
test -e $pdf && $CP $pdf "$BUILD_ROOT$DOC_DIR"/ \
&& echo " pdf $BUILD_ROOT$DOC_DIR/`basename $pdf`"
done
# html
for html in doc/manual/sbcl doc/manual/asdf
do
test -d $html && $CP -R -L $html "$BUILD_ROOT$DOC_DIR"/html \
&& echo " html $BUILD_ROOT$DOC_DIR/html/`basename $html`/index.html"
done
for html in doc/manual/sbcl.html doc/manual/asdf.html
do
test -e $html && $CP $html "$BUILD_ROOT$DOC_DIR"/ \
&& echo " html $BUILD_ROOT$DOC_DIR/`basename $html`"
done
for f in BUGS CREDITS COPYING NEWS
do
test -e $f && $CP $f "$BUILD_ROOT$DOC_DIR"/
done