Difference between revisions of "Guile"

From CBLFS
Jump to navigationJump to search
Line 8: Line 8:
 
----
 
----
  
{{Blank-Package-Introduction}}
+
{{Package-Introduction||http://www.gnu.org/software/guile/guile.html}}
  
 
== Dependencies ==
 
== Dependencies ==

Revision as of 08:36, 10 May 2008

Download Source: http://ftp.gnu.org/pub/gnu/guile/guile-1.8.7.tar.gz

Introduction to Guile

Project Homepage: http://www.gnu.org/software/guile/guile.html

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr --with-threads &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr --with-threads &&
make

Install the package

make install &&
mv -v /usr/bin/guile-config{,-32} &&
mv -v /usr/bin/guile{,-32}

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr --with-threads \
    --libdir=/usr/lib32 &&
make

Install the package

make install &&
mv -v /usr/bin/guile-config{,-n32} &&
mv -v /usr/bin/guile{,-n32}

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --with-threads\
    --libdir=/usr/lib64 &&
make

Install the package

make install &&
mv -v /usr/bin/guile-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/guile-config &&
mv -v /usr/bin/guile{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/guile