Created
June 11, 2015 05:37
-
-
Save indykish/bedb24f58bbd10da4ee8 to your computer and use it in GitHub Desktop.
Compile ruby from 2.2.2 source , we use it to package a deb of megam nilavu
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 characters
# this is amd64 compiled ruby grabbed from source. | |
wget http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.2.tar.gz | |
gunzip -c ruby-2.2.2.tar.gz | tar -xvf -; rm ruby-2.2.2.tar.gz | |
cd ruby-2.2.2 | |
./configure --prefix="/home/megam/Downloads/ruby2.2.2" \ | |
--enable-shared \ | |
--disable-install-doc \ | |
--disable-install-rdoc | |
make | |
make install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment