Created
December 24, 2011 13:22
Revisions
-
lest revised this gist
Feb 18, 2012 . 1 changed file with 6 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,24 +1,22 @@ wget "ftp://ftp.cwru.edu/pub/bash/readline-6.2.tar.gz" tar xf readline-6.2.tar.gz cd readline-6.2 ./configure --prefix=$HOME/.rbenv/versions/1.9.3-p125 make -j 2 make install cd .. wget "http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz" tar xf yaml-0.1.4.tar.gz cd yaml-0.1.4 ./configure --prefix=$HOME/.rbenv/versions/1.9.3-p125 make -j 2 make install cd .. wget "http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz" tar xf ruby-1.9.3-p125.tar.gz cd ruby-1.9.3-p125 ./configure --prefix=$HOME/.rbenv/versions/1.9.3-p125 --with-opt-dir=$HOME/.rbenv/versions/1.9.3-p125 --with-readline-dir=$HOME/.rbenv/versions/1.9.3-p125 --disable-install-doc make -j 2 make install -
lest revised this gist
Dec 26, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,6 +19,6 @@ tar xf ruby-1.9.3-p0.tar.gz cd ruby-1.9.3-p0 wget "https://gist.github.com/raw/1484985/3e9679a6fec73dacbcced2b1ce42ca642d85ccc0/cached_lp_sorted_lf.patch" patch -p1 < cached_lp_sorted_lf.patch ./configure --prefix=$HOME/.rbenv/versions/1.9.3-p0-patched --with-opt-dir=$HOME/.rbenv/versions/1.9.3-p0-patched --with-readline-dir=$HOME/.rbenv/versions/1.9.3-p0-patched --disable-install-doc make -j 2 make install -
lest created this gist
Dec 24, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ wget "ftp://ftp.cwru.edu/pub/bash/readline-6.2.tar.gz" tar xf readline-6.2.tar.gz cd readline-6.2 ./configure --prefix=$HOME/.rbenv/versions/1.9.3-p0-patched make -j 2 make install cd .. wget "http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz" tar xf yaml-0.1.4.tar.gz cd yaml-0.1.4 ./configure --prefix=$HOME/.rbenv/versions/1.9.3-p0-patched make -j 2 make install cd .. wget "http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p0.tar.gz" tar xf ruby-1.9.3-p0.tar.gz cd ruby-1.9.3-p0 wget "https://gist.github.com/raw/1484985/3e9679a6fec73dacbcced2b1ce42ca642d85ccc0/cached_lp_sorted_lf.patch" patch -p1 < cached_lp_sorted_lf.patch ./configure --prefix=$HOME/.rbenv/versions/1.9.3-p0-patched --with-opt-dir=$HOME/.rbenv/versions/1.9.3-p0-patched --disable-install-doc make -j 2 make install