Contents
/usr/lib/ruby hierarchy.
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.6.tar.gz
Download MD5 sum: e558a0e00ae318d43bf6ff9af452bad2
Download size: 3.9 MB
Estimated disk space required: 144 MB
Estimated build time: 2.3 SBU
OpenSSL-0.9.8e, Tk-8.4.14, 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.
/usr/lib/ruby hierarchy.
Last updated on 2007-04-09 18:15:24 +0200