source: general/genlib/guile.xml@ c043580e

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since c043580e was c043580e, checked in by Igor Živković <igor@…>, 19 years ago

Updated to Guile-1.6.6.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3077 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!ENTITY guile-download-http "http://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.gz">
8<!ENTITY guile-download-ftp "ftp://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.gz">
9<!ENTITY guile-size "3.0 MB">
10<!ENTITY guile-buildsize "36.5 MB">
11<!ENTITY guile-time "0.87 SBU">
12]>
13
14<sect1 id="guile" xreflabel="Guile-&guile-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="guile.html"?>
20<title>Guile-&guile-version;</title>
21
22<sect2>
23<title>Introduction to <application>Guile</application></title>
24
25<para>The <application>Guile</application> package contains the Project
26<acronym>GNU</acronym>'s extension language library.
27<application>Guile</application> also contains a stand alone
28<application>Scheme</application> interpreter.</para>
29
30<sect3><title>Package information</title>
31<itemizedlist spacing='compact'>
32<listitem><para>Download (HTTP): <ulink
33url="&guile-download-http;"/></para></listitem>
34<listitem><para>Download (FTP): <ulink
35url="&guile-download-ftp;"/></para></listitem>
36<listitem><para>Download size: &guile-size;</para></listitem>
37<listitem><para>Estimated disk space required:
38&guile-buildsize;</para></listitem>
39<listitem><para>Estimated build time:
40&guile-time;</para></listitem></itemizedlist>
41</sect3>
42
43</sect2>
44
45<sect2>
46<title>Installation of <application>Guile</application></title>
47
48<para>Install <application>Guile</application> by running the following
49commands:</para>
50
51<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
52LD_LIBRARY_PATH="$PWD/libguile-ltdl/.libs" make &amp;&amp;
53make install</command></userinput></screen>
54
55</sect2>
56
57<sect2>
58<title>Command Explanations</title>
59
60<para><command>LD_LIBRARY_PATH="$PWD/libguile-ltdl/.libs" make</command>:
61Something is broken in the Autotools chain. Passing this variable allows the
62build to finish successfully.</para>
63
64</sect2>
65
66<sect2>
67<title>Contents</title>
68
69<para>In addition to the <filename class='libraryfile'>libguile</filename>
70libraries, the <application>Guile</application> package contains
71<command>guile</command>,
72<command>guile-config</command>,
73<command>guile-snarf</command>,
74<command>guile-tools</command> and
75numerous <application>Guile</application> scripts.
76</para>
77
78</sect2>
79
80<sect2><title>Description</title>
81
82<sect3><title>guile</title>
83<para><command>guile</command> is a stand-alone Scheme interpreter for
84<application>Guile</application>.</para></sect3>
85
86<sect3><title>guile-config</title>
87<para><command>guile-config</command> is a <application>Guile</application>
88script which provides the information necessary to link your programs against
89the <application>Guile</application> library, in much the same way
90<xref linkend="pkgconfig"></xref> does.</para></sect3>
91
92<sect3><title>guile-snarf</title>
93<para><command>guile-snarf</command> is a script to parse declarations in
94your <application>C</application> code for <application>Scheme</application>
95visible <application>C</application> functions,
96<application>Scheme</application> objects to be used by
97<application>C</application> code, etc.</para></sect3>
98
99<sect3><title>guile-tools</title>
100<para><command>guile-tools</command> is a wrapper program installed along with
101<command>guile</command> which knows where a particular module is installed and
102calls it passing its args to a program.</para></sect3>
103
104</sect2>
105
106</sect1>
Note: See TracBrowser for help on using the repository browser.