libin (owner)

Fork Of

gist: 59130 by postmodern Simple shell script that do...

Revisions

gist: 68359 Download_button fork
public
Public Clone URL: git://gist.github.com/68359.git
Embed All Files: show embed
build_ruby19.sh #
1
2
3
4
5
6
7
8
#!/bin/sh
 
mkdir -p /usr/local/src && cd /usr/local/src
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p0.tar.bz2
tar -xjvf ruby-1.9.1-p0.tar.bz2
cd ruby-1.9.1-p0
./configure --prefix=/usr --program-suffix=19 --enable-shared
make && make install