We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12d4885 commit 0528217Copy full SHA for 0528217
bootstrap-centos.sh
@@ -1,15 +1,17 @@
1
#!/usr/bin/env bash
2
3
+SBCL_VERSION=2.2.5
4
+
5
sudo yum -y install yum-utils rpmdevtools @"Development Tools" \
6
sqlite-devel zlib-devel
7
8
# SBCL 1.3, we'll overwrite the repo version of sbcl with a more recent one
9
sudo yum -y install epel-release
10
sudo yum install -y sbcl.x86_64 --enablerepo=epel
11
-wget http://downloads.sourceforge.net/project/sbcl/sbcl/1.3.6/sbcl-1.3.6-source.tar.bz2
-tar xfj sbcl-1.3.6-source.tar.bz2
12
-cd sbcl-1.3.6
+wget http://downloads.sourceforge.net/project/sbcl/sbcl/$SBCL_VERSION/sbcl-$SBCL_VERSION-source.tar.bz2
13
+tar xfj sbcl-$SBCL_VERSION-source.tar.bz2
14
+cd sbcl-$SBCL_VERSION
15
./make.sh --with-sb-thread --with-sb-core-compression --prefix=/usr > /dev/null 2>&1
16
sudo sh install.sh
17
cd
0 commit comments