File: bootstrap-centos.sh

package info (click to toggle)
pgloader 3.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 11,768 kB
  • sloc: sql: 32,252; lisp: 14,414; makefile: 415; sh: 102; python: 44
file content (24 lines) | stat: -rw-r--r-- 673 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash

sudo yum -y install yum-utils rpmdevtools @"Development Tools" \
                    sqlite-devel zlib-devel

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

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
cd sbcl-1.3.6
./make.sh --with-sb-thread --with-sb-core-compression --prefix=/usr > /dev/null 2>&1
sudo sh install.sh
cd

# Missing dependencies
sudo yum -y install freetds-devel

# prepare the rpmbuild setup
rpmdev-setuptree

# pgloader
#make -C /vagrant rpm