Skip to content

Instantly share code, notes, and snippets.

@jackmcpickle
Created July 18, 2013 05:32
Show Gist options
  • Save jackmcpickle/6026908 to your computer and use it in GitHub Desktop.
Save jackmcpickle/6026908 to your computer and use it in GitHub Desktop.
Starting vagrant script to install QT requirements
# updated apt-get to latest security patches
apt-get update
apt-get upgrade -y
#rvm req.
apt-get install curl git subversion build-essential bison openssl libreadline6 libreadline6-dev zlib1g zlib1g-dev libssl-dev libyaml-dev libxml2-dev libxslt-dev autoconf libc6-dev make wget -y
# redis
apt-get install redis-server
#solr
openjdk-7-jre
# zint
apt-get install libpng-dev libz-dev
#ci server
apt-get install libffi-dev
# pdfkit
wget https://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.9.9-static-amd64.tar.bz2
# then unzip & install
#rvm/ruby
curl -L https://get.rvm.io | bash -s stable
rvm install 1.9.3-p448
# reload bash
source ./bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment