source: general/prog/guile.xml@ 2597ad1

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 2597ad1 was 2597ad1, checked in by Douglas R. Reno <renodr@…>, 4 years ago

Update to guile-3.0.3
Update to network-manager-applet-1.18.0
Update to graphene-1.10.2

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@23313 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
[8dfc5c3]7 <!ENTITY guile-download-http "&gnu-http;/guile/guile-&guile-version;.tar.xz">
8 <!ENTITY guile-download-ftp "&gnu-ftp;/guile/guile-&guile-version;.tar.xz">
[2597ad1]9 <!ENTITY guile-md5sum "d3b4f1676aa90c0f91c40b08ba88c156">
[bad2cbca]10 <!ENTITY guile-size "12 MB">
[2597ad1]11 <!ENTITY guile-buildsize "273 MB (add 3 MB for tests)">
12 <!ENTITY guile-time "1.9 SBU (Using parallelism=4; add 0.4 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
[4de23175]38 &lfs91_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">
[60ddbaf]78 <xref linkend="gc"/> and
[6025fa54]79 <xref linkend="libunistring"/>
80 </para>
[11dbeb1e]81
[60a3d169]82 <bridgehead renderas="sect4">Optional</bridgehead>
[dbede5d0]83 <para role="optional">
[6d62ba8]84 <xref linkend="emacs"/> and
[c77f4066]85 <xref linkend="gdb"/> (run-time only dependencies).
[dbede5d0]86 </para>
[60a3d169]87
[e1030e21]88 <para condition="html" role="usernotes">
89 User Notes: <ulink url="&blfs-wiki;/guile"/>
90 </para>
[12180381]91 </sect2>
92
93 <sect2 role="installation">
94 <title>Installation of Guile</title>
95
[e1030e21]96 <para>
97 Install <application>Guile</application> by running the following
98 commands:
99 </para>
[a367fbc]100
[92245989]101<screen><userinput>./configure --prefix=/usr \
[0ee2aa3]102 --disable-static \
103 --docdir=/usr/share/doc/guile-&guile-version; &amp;&amp;
[4890200]104make &amp;&amp;
[e1030e21]105make html &amp;&amp;
[a367fbc]106
[4890200]107makeinfo --plaintext -o doc/r5rs/r5rs.txt doc/r5rs/r5rs.texi &amp;&amp;
108makeinfo --plaintext -o doc/ref/guile.txt doc/ref/guile.texi</userinput></screen>
[12180381]109
[e1030e21]110 <para>
[47888b9]111 To test the results, issue: <command>./check-guile</command>.
[e1030e21]112 </para>
[40d6bab]113
[e1030e21]114 <para>
115 Now, as the <systemitem class="username">root</systemitem> user:
116 </para>
[12180381]117
[0ee2aa3]118<screen role="root"><userinput>make install &amp;&amp;
119make install-html &amp;&amp;
120
[db7e804]121mkdir -p /usr/share/gdb/auto-load/usr/lib &amp;&amp;
[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>
[db7e804]158 libguile-3.0.so and guile-readline.so
[b24bfef]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.