Difference between revisions of "Ruby"

From CBLFS
Jump to navigationJump to search
 
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| ftp://ftp.ruby-lang.org/pub/ruby/ruby-1.8.4.tar.gz
+
| ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.5.tar.gz
 
|}
 
|}
  

Revision as of 15:49, 16 September 2006

Download Source: ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.5.tar.gz

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