#!/usr/bin/env false

# This is not an executable shell script--please execute each line by hand

# If you've never done so before, install the EPEL repo information
wget http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
sudo rpm -Uvh epel-release-6-8.noarch.rpm

# Install build prerequisites
sudo yum -y install make gcc gcc-c++ git python openssl-devel rpm-build cmake28

# If you are not able to connect to https URLs during build, it's probably
# because of the limited number of certificate authorities that are included
# with the OS by default. Use this command to replace the default bundle with
# a more extensive list.
sudo curl http://curl.haxx.se/ca/cacert.pem -o /etc/pki/tls/certs/ca-bundle.crt

