mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-07 06:47:00 +02:00
28 lines
831 B
Bash
28 lines
831 B
Bash
#!/usr/bin/env bash
|
|
|
|
sudo yum -y install yum-utils rpmdevtools @development-tools \
|
|
sbcl sqlite-devel zlib-devel
|
|
|
|
# SBCL 1.1.14
|
|
# http://www.mikeivanov.com/post/66510551125/installing-sbcl-1-1-on-rhel-centos-systems
|
|
sudo yum -y groupinstall "Development Tools"
|
|
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
|
|
sudo rpm -Uvh epel-release-6*.rpm
|
|
sudo yum install -y sbcl.x86_64
|
|
|
|
wget http://downloads.sourceforge.net/project/sbcl/sbcl/1.1.14/sbcl-1.1.14-source.tar.bz2
|
|
tar xfj sbcl-1.1.14-source.tar.bz2
|
|
cd sbcl-1.1.14
|
|
./make.sh --with-sb-thread --with-sb-core-compression > /dev/null 2>&1
|
|
sudo sh install.sh
|
|
cd
|
|
|
|
# remove the old version that we used to compile the newer one.
|
|
sudo yum remove -y sbcl
|
|
|
|
# prepare the rpmbuild setup
|
|
rpmdev-setuptree
|
|
|
|
# pgloader
|
|
#make -C /vagrant rpm
|