Skip to content

Instantly share code, notes, and snippets.

@postmodern
Created February 6, 2009 00:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save postmodern/59130 to your computer and use it in GitHub Desktop.
Save postmodern/59130 to your computer and use it in GitHub Desktop.
Simple shell script that downloads and installs Ruby 1.9.1 alongside 1.8
#!/bin/sh
PATCH=376
mkdir -p /usr/local/src && cd /usr/local/src
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p$PATCH.tar.bz2
tar -xjvf ruby-1.9.1-p$PATCH.tar.bz2
cd ruby-1.9.1-p$PATCH
./configure --prefix=/usr --program-suffix=19 --enable-shared
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment