source: general/genlib/guile.xml@ 3bc173f

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 3bc173f was 3bc173f, checked in by Randy McMurchy <randy@…>, 20 years ago

Updated to Guile-1.6.5

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

  • Property mode set to 100644
File size: 4.0 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<!-- <sect3><title>Additional downloads</title>
44<itemizedlist spacing='compact'>
45<listitem><para>Required Patch (if building the HTML Reference Guide): <ulink
46url="&patch-root;/guile-&guile-version;-fhs_docs-1.patch"/></para></listitem>
47</itemizedlist>
48</sect3>
49
50<sect3><title><application>Guile</application> dependencies</title>
51<sect4><title>Optional</title>
52<itemizedlist spacing='compact'>
53<listitem><para><xref linkend="pst-typesetting-tex"/></para></listitem>
54</itemizedlist></sect4>
55</sect3> -->
56
57</sect2>
58
59<sect2>
60<title>Installation of <application>Guile</application></title>
61
62<para>Install <application>Guile</application> by running the following
63commands:</para>
64
65<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
66LD_LIBRARY_PATH="$PWD/libguile-ltdl/.libs" make &amp;&amp;
67make install</command></userinput></screen>
68
69</sect2>
70
71<sect2>
72<title>Command Explanations</title>
73
74<para><command>LD_LIBRARY_PATH="$PWD/libguile-ltdl/.libs" make</command>:
75Something is broken in the Autotools chain. Passing this variable allows the
76build to finish successfully.</para>
77
78</sect2>
79
80<sect2>
81<title>Contents</title>
82
83<para>In addition to the <filename class='libraryfile'>libguile</filename>
84libraries, the <application>Guile</application> package contains
85<command>guile</command>,
86<command>guile-config</command>,
87<command>guile-snarf</command>,
88<command>guile-tools</command> and
89numerous <application>Guile</application> scripts.
90</para>
91
92</sect2>
93
94<sect2><title>Description</title>
95
96<sect3><title>guile</title>
97<para><command>guile</command> is a stand-alone Scheme interpreter for
98<application>Guile</application>.</para></sect3>
99
100<sect3><title>guile-config</title>
101<para><command>guile-config</command> is a <application>Guile</application>
102script which provides the information necessary to link your programs against
103the <application>Guile</application> library, in much the same way
104<xref linkend="pkgconfig"></xref> does.</para></sect3>
105
106<sect3><title>guile-snarf</title>
107<para><command>guile-snarf</command> is a script to parse declarations in
108your <application>C</application> code for <application>Scheme</application>
109visible <application>C</application> functions,
110<application>Scheme</application> objects to be used by
111<application>C</application> code, etc.</para></sect3>
112
113<sect3><title>guile-tools</title>
114<para><command>guile-tools</command> is a wrapper program installed along with
115<command>guile</command> which knows where a particular module is installed and
116calls it passing its args to a program.</para></sect3>
117
118</sect2>
119
120</sect1>
121
Note: See TracBrowser for help on using the repository browser.