The Ruby package contains the Ruby development environment. This is useful for object-oriented scripting.
Download (FTP): ftp://ftp.ruby-lang.org/pub/ruby/ruby-1.8.5.tar.gz
Download MD5 sum: 3fbb02294a8ca33d4684055adba5ed6f
Download size: 4.2 MB
Estimated disk space required: 86.9 MB
Estimated build time: 2.1 SBU
OpenSSL-0.9.8d, Tk-8.4.13, and GDBM-1.8.3
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/ruby
Install Ruby by running the following commands:
./configure --prefix=/usr \ --enable-shared \ --enable-pthread \ --enable-install-doc && make
To test the results, issue: make test.
Now, as the root user:
make install
--enable-shared: This parameter builds the libruby shared library.
--enable-pthread: This parameter links the threading library into the Ruby build.
Last updated on 2006-10-15 17:02:06 -0500