Ruby: Difference between revisions
From CBLFS
Jump to navigationJump to search
I added the package description from BLFS. |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| ftp://ftp.ruby-lang.org/pub/ruby/ | | ftp://ftp.ruby-lang.org/pub/ruby/{{Ruby-Version2}}/ruby-{{Ruby-Version}}.tar.gz | ||
|} | |} | ||
Revision as of 14:42, 17 December 2006
| Download Source: | ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p376.tar.gz |
|---|
Introduction to Ruby
The Ruby package contains the Ruby development environment. This is useful for object-oriented scripting.
Dependencies
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr \
--enable-shared --enable-pthread \
--enable-install-doc &&
make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr \
--enable-shared --enable-pthread \
--enable-install-doc &&
make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
--libdir=/usr/lib32 --enable-shared \
--enable-pthread --enable-install-doc &&
make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr \
--libdir=/usr/lib64 --enable-shared \
--enable-pthread --enable-install-doc &&
make
Install the package
make install