Skip to content

Commit 0528217

Browse files
committed
bootstrap-centos.sh: Bump sbcl version to 2.2.5
Close #956
1 parent 12d4885 commit 0528217

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

bootstrap-centos.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
#!/usr/bin/env bash
22

3+
SBCL_VERSION=2.2.5
4+
35
sudo yum -y install yum-utils rpmdevtools @"Development Tools" \
46
sqlite-devel zlib-devel
57

68
# SBCL 1.3, we'll overwrite the repo version of sbcl with a more recent one
79
sudo yum -y install epel-release
810
sudo yum install -y sbcl.x86_64 --enablerepo=epel
911

10-
wget http://downloads.sourceforge.net/project/sbcl/sbcl/1.3.6/sbcl-1.3.6-source.tar.bz2
11-
tar xfj sbcl-1.3.6-source.tar.bz2
12-
cd sbcl-1.3.6
12+
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
1315
./make.sh --with-sb-thread --with-sb-core-compression --prefix=/usr > /dev/null 2>&1
1416
sudo sh install.sh
1517
cd

0 commit comments

Comments
 (0)