Skip to content

Instantly share code, notes, and snippets.

@abecciu
abecciu / gist:991636
Created May 25, 2011 18:55 — forked from jtimberman/gist:881058
i can has ruby-1.9.2 package with fpm
#!/usr/bin/env bash
sudo apt-get install build-essential libssl-dev libreadline6-dev
sudo gem install fpm
wget ftp://ftp.ruby-lang.org//pub/ruby/1.9/ruby-1.9.2-p180.tar.gz
tar -zxvf ruby-1.9.2-p180.tar.gz
cd ruby-1.9.2-p180
time (./configure --prefix=/usr && make && make install DESTDIR=/tmp/installdir)
cd ..