source: general/prog/guile.xml@ 47888b9

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 47888b9 was 47888b9, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update to guile-2.2.0.
Update to keyutils-1.5.10.
Update to llvm-4.0.0.
Update to nss-3.30.

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

  • Property mode set to 100644
File size: 7.3 KB
RevLine 
[61a7ee8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[61a7ee8]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[b24bfef]7 <!ENTITY guile-download-http "http://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.xz">
8 <!ENTITY guile-download-ftp "ftp://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.xz">
[47888b9]9 <!ENTITY guile-md5sum "931bf555047a7706b246d34a93a390f4">
10 <!ENTITY guile-size "10.3 MB">
11 <!ENTITY guile-buildsize "177 MB (add 3 MB for tests)">
12 <!ENTITY guile-time "9.1 SBU (add 0.5 SBU for tests)">
[61a7ee8]13]>
14
15<sect1 id="guile" xreflabel="Guile-&guile-version;">
16<?dbhtml filename="guile.html"?>
[12180381]17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Guile-&guile-version;</title>
24
25 <indexterm zone="guile">
26 <primary sortas="a-Guile">Guile</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Guile</title>
31
[e1030e21]32 <para>
[b340892]33 The <application>Guile</application> package contains the GNU Project's
34 extension language library. <application>Guile</application> also
[e1030e21]35 contains a stand alone <application>Scheme</application> interpreter.
36 </para>
[12180381]37
[63e8fcf9]38 &lfs80_checked;
[8f437ed]39
[12180381]40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
[e1030e21]43 <para>
44 Download (HTTP): <ulink url="&guile-download-http;"/>
45 </para>
[12180381]46 </listitem>
47 <listitem>
[e1030e21]48 <para>
49 Download (FTP): <ulink url="&guile-download-ftp;"/>
50 </para>
[12180381]51 </listitem>
52 <listitem>
[e1030e21]53 <para>
54 Download MD5 sum: &guile-md5sum;
55 </para>
[12180381]56 </listitem>
57 <listitem>
[e1030e21]58 <para>
59 Download size: &guile-size;
60 </para>
[12180381]61 </listitem>
62 <listitem>
[e1030e21]63 <para>
64 Estimated disk space required: &guile-buildsize;
65 </para>
[12180381]66 </listitem>
67 <listitem>
[e1030e21]68 <para>
69 Estimated build time: &guile-time;
70 </para>
[12180381]71 </listitem>
72 </itemizedlist>
[e1030e21]73
[60a3d169]74 <bridgehead renderas="sect3">Guile Dependencies</bridgehead>
[6473e74]75
[dbede5d0]76 <bridgehead renderas="sect4">Required</bridgehead>
[6025fa54]77 <para role="required">
[ba1be62]78 <xref linkend="gc"/>,
[4890200]79 <xref linkend="libffi"/> and
[6025fa54]80 <xref linkend="libunistring"/>
81 </para>
[11dbeb1e]82
[60a3d169]83 <bridgehead renderas="sect4">Optional</bridgehead>
[dbede5d0]84 <para role="optional">
[6d62ba8]85 <xref linkend="emacs"/> and
[c77f4066]86 <xref linkend="gdb"/> (run-time only dependencies).
[dbede5d0]87 </para>
[60a3d169]88
[e1030e21]89 <para condition="html" role="usernotes">
90 User Notes: <ulink url="&blfs-wiki;/guile"/>
91 </para>
[12180381]92 </sect2>
93
94 <sect2 role="installation">
95 <title>Installation of Guile</title>
96
[e1030e21]97 <para>
98 Install <application>Guile</application> by running the following
99 commands:
100 </para>
[a367fbc]101
[92245989]102<screen><userinput>./configure --prefix=/usr \
[0ee2aa3]103 --disable-static \
104 --docdir=/usr/share/doc/guile-&guile-version; &amp;&amp;
[4890200]105make &amp;&amp;
[e1030e21]106make html &amp;&amp;
[a367fbc]107
[4890200]108makeinfo --plaintext -o doc/r5rs/r5rs.txt doc/r5rs/r5rs.texi &amp;&amp;
109makeinfo --plaintext -o doc/ref/guile.txt doc/ref/guile.texi</userinput></screen>
[12180381]110
[e1030e21]111 <para>
[47888b9]112 To test the results, issue: <command>./check-guile</command>.
[e1030e21]113 </para>
[40d6bab]114
[e1030e21]115 <para>
116 Now, as the <systemitem class="username">root</systemitem> user:
117 </para>
[12180381]118
[0ee2aa3]119<screen role="root"><userinput>make install &amp;&amp;
120make install-html &amp;&amp;
121
[a1446bf]122mv /usr/lib/libguile-*-gdb.scm /usr/share/gdb/auto-load/usr/lib &amp;&amp;
[0ee2aa3]123mv /usr/share/doc/guile-&guile-version;/{guile.html,ref} &amp;&amp;
124mv /usr/share/doc/guile-&guile-version;/r5rs{.html,} &amp;&amp;
[0461254]125
[a1446bf]126find examples -name "Makefile*" -delete &amp;&amp;
[0ee2aa3]127cp -vR examples /usr/share/doc/guile-&guile-version; &amp;&amp;
[dcd55b37]128
[ec7940be]129for DIRNAME in r5rs ref; do
[4890200]130 install -v -m644 doc/${DIRNAME}/*.txt \
131 /usr/share/doc/guile-&guile-version;/${DIRNAME}
[0ee2aa3]132done &amp;&amp;
133unset DIRNAME</userinput></screen>
[d5595a31]134
135 </sect2>
136
137 <sect2 role="commands">
138 <title>Command Explanations</title>
139
140 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
141 href="../../xincludes/static-libraries.xml"/>
142
[dbede5d0]143 </sect2>
[dcd55b37]144
[12180381]145 <sect2 role="content">
146 <title>Contents</title>
147
148 <segmentedlist>
149 <segtitle>Installed Programs</segtitle>
150 <segtitle>Installed Libraries</segtitle>
151 <segtitle>Installed Directories</segtitle>
152
153 <seglistitem>
[b24bfef]154 <seg>
155 guild, guile, guile-config, guile-snarf and guile-tools
156 </seg>
157 <seg>
158 libguile-2.0.so and libguilereadline-v-18.so
159 </seg>
160 <seg>
161 /usr/include/guile,
[4890200]162 /usr/lib/guile,
163 /usr/share/doc/guile-&guile-version; and
[b24bfef]164 /usr/share/guile
165 </seg>
[12180381]166 </seglistitem>
167 </segmentedlist>
168
169 <variablelist>
170 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
171 <?dbfo list-presentation="list"?>
172 <?dbhtml list-presentation="table"?>
173
174 <varlistentry id="guile-prog">
175 <term><command>guile</command></term>
176 <listitem>
[e1030e21]177 <para>
178 is a stand-alone Scheme interpreter for
179 <application>Guile</application>.
180 </para>
[12180381]181 <indexterm zone="guile guile-prog">
182 <primary sortas="b-guile">guile</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry id="guile-config">
188 <term><command>guile-config</command></term>
189 <listitem>
[e1030e21]190 <para>
191 is a <application>Guile</application> script which provides the
192 information necessary to link your programs against the
193 <application>Guile</application> library, in much the same way
194 PkgConfig does.
195 </para>
[12180381]196 <indexterm zone="guile guile-config">
197 <primary sortas="b-guile-config">guile-config</primary>
198 </indexterm>
199 </listitem>
200 </varlistentry>
201
202 <varlistentry id="guile-snarf">
203 <term><command>guile-snarf</command></term>
204 <listitem>
[e1030e21]205 <para>
206 is a script to parse declarations in your
207 <application>C</application> code for
208 <application>Scheme</application> visible
209 <application>C</application> functions.
210 </para>
[12180381]211 <indexterm zone="guile guile-snarf">
212 <primary sortas="b-guile-snarf">guile-snarf</primary>
213 </indexterm>
214 </listitem>
215 </varlistentry>
216
[e1030e21]217 <varlistentry id="guild">
218 <term><command>guild</command></term>
219 <listitem>
220 <para>
[601a838]221 is a wrapper program installed along with <command>guile</command>,
[e1030e21]222 which knows where a particular module is installed and calls it,
223 passing its arguments to the program.
224 </para>
225 <indexterm zone="guile guild">
226 <primary sortas="b-guild">guild</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
[12180381]231 <varlistentry id="guile-tools">
232 <term><command>guile-tools</command></term>
233 <listitem>
[e1030e21]234 <para>
235 is a symlink to <command>guild</command>.
236 </para>
[12180381]237 <indexterm zone="guile guile-tools">
238 <primary sortas="b-guile-tools">guile-tools</primary>
239 </indexterm>
240 </listitem>
241 </varlistentry>
[b24bfef]242
[12180381]243 </variablelist>
[b24bfef]244
[12180381]245 </sect2>
[b24bfef]246
[61a7ee8]247</sect1>
Note: See TracBrowser for help on using the repository browser.