mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-07 06:47:00 +02:00
I'm not sure if anyone is using those scripts anymore, but I suppose keeping them known broken isn't helping anyone either. This is a blind fix in reaction to latest comment in bug #131.
16 lines
387 B
Bash
16 lines
387 B
Bash
#!/usr/bin/env bash
|
|
|
|
sudo yum -y install yum-utils rpmdevtools @"Development Tools" \
|
|
sqlite-devel zlib-devel
|
|
|
|
# Enable epel for sbcl
|
|
sudo yum -y install epel-release
|
|
sudo yum -y install sbcl
|
|
|
|
# Missing dependency
|
|
sudo yum install freetds freetds-devel -y
|
|
sudo ln -s /usr/lib64/libsybdb.so.5 /usr/lib64/libsybdb.so
|
|
|
|
# prepare the rpmbuild setup
|
|
rpmdev-setuptree
|