source: general/prog/lua.xml@ 0cce0593

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 0cce0593 was 902fb47, checked in by DJ Lucas <dj@…>, 7 years ago

More tags.

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

  • Property mode set to 100644
File size: 8.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY lua-download-http "http://www.lua.org/ftp/lua-&lua-version;.tar.gz">
8 <!ENTITY lua-download-ftp " ">
9 <!ENTITY lua-md5sum "53a9c68bcc0eda58bdc2095ad5cdfc63">
10 <!ENTITY lua-size "300 KB">
11 <!ENTITY lua-buildsize "2.8 MB (with Basic tests)">
12 <!ENTITY lua-time "less than 0.1 SBU (with Basic tests)">
13
14 <!ENTITY lua-tests-download-http "http://www.lua.org/tests/lua-&lua-version;-tests.tar.gz">
15 <!ENTITY lua-tests-download-ftp " ">
16 <!ENTITY lua-tests-md5sum "b14fe3748c1cb2d74e3acd1943629ba3">
17 <!ENTITY lua-tests-size "104 KB">
18]>
19
20<sect1 id="lua" xreflabel="Lua-&lua-version;">
21 <?dbhtml filename="lua.html"?>
22
23 <sect1info>
24 <othername>$LastChangedBy$</othername>
25 <date>$Date$</date>
26 </sect1info>
27
28 <title>Lua-&lua-version;</title>
29
30 <indexterm zone="lua">
31 <primary sortas="a-Lua">Lua</primary>
32 </indexterm>
33
34 <sect2 role="package">
35 <title>Introduction to Lua</title>
36
37 <para>
38 <application>Lua</application> is a powerful light-weight programming
39 language designed for extending applications. It is also frequently used
40 as a general-purpose, stand-alone language. <application>Lua</application>
41 is implemented as a small library of C functions, written in ANSI C, and
42 compiles unmodified in all known platforms. The implementation goals are
43 simplicity, efficiency, portability, and low embedding cost. The result is
44 a fast language engine with small footprint, making it ideal in embedded
45 systems too.
46 </para>
47
48 &lfs81_checked;
49
50 <bridgehead renderas="sect3">Package Information</bridgehead>
51 <itemizedlist spacing="compact">
52 <listitem>
53 <para>
54 Download (HTTP): <ulink url="&lua-download-http;"/>
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download (FTP): <ulink url="&lua-download-ftp;"/>
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Download MD5 sum: &lua-md5sum;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Download size: &lua-size;
70 </para>
71 </listitem>
72 <listitem>
73 <para>
74 Estimated disk space required: &lua-buildsize;
75 </para>
76 </listitem>
77 <listitem>
78 <para>
79 Estimated build time: &lua-time;
80 </para>
81 </listitem>
82 </itemizedlist>
83
84 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
85 <itemizedlist spacing="compact">
86 <listitem>
87 <para>
88 Required patch:
89 <ulink url="&patch-root;/lua-&lua-version;-shared_library-1.patch"/>
90 </para>
91 </listitem>
92 <listitem>
93 <para>
94 Optional Test Suite Download (HTTP): <ulink url="&lua-tests-download-http;"/>
95 </para>
96 </listitem>
97 <listitem>
98 <para>
99 Optional Test Suite Download (FTP): <ulink url="&lua-tests-download-ftp;"/>
100 </para>
101 </listitem>
102 <listitem>
103 <para>
104 Optional Test Suite Download MD5 sum: &lua-tests-md5sum;
105 </para>
106 </listitem>
107 <listitem>
108 <para>
109 Optional Test Suite Download size: &lua-tests-size;
110 </para>
111 </listitem>
112 </itemizedlist>
113
114 <para condition="html" role="usernotes">User Notes:
115 <ulink url="&blfs-wiki;/lua"/>
116 </para>
117 </sect2>
118
119 <sect2 role="installation">
120 <title>Installation of Lua</title>
121
122 <para>Some packages check for the <application>pkg-config</application> file
123 for <application>Lua</application>, which is created with:</para>
124
125<screen><userinput>cat &gt; lua.pc &lt;&lt; "EOF"
126<literal>V=5.3
127R=&lua-version;
128
129prefix=/usr
130INSTALL_BIN=${prefix}/bin
131INSTALL_INC=${prefix}/include
132INSTALL_LIB=${prefix}/lib
133INSTALL_MAN=${prefix}/share/man/man1
134INSTALL_LMOD=${prefix}/share/lua/${V}
135INSTALL_CMOD=${prefix}/lib/lua/${V}
136exec_prefix=${prefix}
137libdir=${exec_prefix}/lib
138includedir=${prefix}/include
139
140Name: Lua
141Description: An Extensible Extension Language
142Version: ${R}
143Requires:
144Libs: -L${libdir} -llua -lm -ldl
145Cflags: -I${includedir}</literal>
146EOF</userinput></screen>
147
148 <para>
149 Install <application>Lua</application> by running the following
150 commands:
151 </para>
152
153<screen><userinput>patch -Np1 -i ../lua-&lua-version;-shared_library-1.patch &amp;&amp;
154sed -i '/#define LUA_ROOT/s:/usr/local/:/usr/:' src/luaconf.h &amp;&amp;
155
156make MYCFLAGS="-DLUA_COMPAT_5_2 -DLUA_COMPAT_5_1" linux</userinput></screen>
157
158 <para>
159 To test the results, issue: <command>make test</command>.
160 <quote>This will run the interpreter and print its version.</quote>.
161 More comprehensive tests can be performed if you downloaded the "Test
162 suite" tarball. Those tests need to be executed after the package is
163 installed, thus we defer to the description below.
164 </para>
165
166 <para>
167 Now, as the <systemitem class="username">root</systemitem> user:
168 </para>
169
170<screen role="root"><userinput>make INSTALL_TOP=/usr \
171 INSTALL_DATA="cp -d" \
172 INSTALL_MAN=/usr/share/man/man1 \
173 TO_LIB="liblua.so liblua.so.5.3 liblua.so.&lua-version;" \
174 install &amp;&amp;
175
176mkdir -pv /usr/share/doc/lua-&lua-version; &amp;&amp;
177cp -v doc/*.{html,css,gif,png} /usr/share/doc/lua-&lua-version; &amp;&amp;
178
179install -v -m644 -D lua.pc /usr/lib/pkgconfig/lua.pc</userinput></screen>
180
181 <para>
182 Here we describe only the "Basic tests". Untar the tarball and
183 change to the
184 <filename class="directory">lua-&lua-version;-tests</filename> directory,
185 then issue
186 <command>lua -e "_U=true" all.lua</command>. If the tests finish without
187 error, you will see a message containing the string "final OK".
188 </para>
189
190 </sect2>
191
192 <sect2 role="commands">
193 <title>Command Explanations</title>
194
195 <para>
196 <command>sed -i ... src/luaconf.h</command>: This command changes the
197 <application>Lua</application> search path to match the install path.
198 </para>
199
200 <para>
201 <envar>MYCFLAGS="-DLUA_COMPAT_5_2 -DLUA_COMPAT_5_1"</envar>: This
202 environment variable includes compatibility layers with Lua 5.1 and 5.2
203 in the build.
204 </para>
205
206 </sect2>
207
208 <sect2 role="content">
209 <title>Contents</title>
210
211 <segmentedlist>
212 <segtitle>Installed Programs</segtitle>
213 <segtitle>Installed Library</segtitle>
214 <segtitle>Installed Directories</segtitle>
215
216 <seglistitem>
217 <seg>
218 lua and luac
219 </seg>
220 <seg>
221 liblua.so
222 </seg>
223 <seg>
224 /usr/{lib,share}/lua and
225 /usr/share/doc/lua-&lua-version;
226 </seg>
227 </seglistitem>
228 </segmentedlist>
229
230 <variablelist>
231 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
232 <?dbfo list-presentation="list"?>
233 <?dbhtml list-presentation="table"?>
234
235 <varlistentry id="lua-prog">
236 <term><command>lua</command></term>
237 <listitem>
238 <para>
239 is the standalone Lua interpreter.
240 </para>
241 <indexterm zone="lua lua-prog">
242 <primary sortas="b-lua">lua</primary>
243 </indexterm>
244 </listitem>
245 </varlistentry>
246
247 <varlistentry id="luac">
248 <term><command>luac</command></term>
249 <listitem>
250 <para>
251 is the Lua compiler.
252 </para>
253 <indexterm zone="lua luac">
254 <primary sortas="b-luac">luac</primary>
255 </indexterm>
256 </listitem>
257 </varlistentry>
258
259 <varlistentry id="liblua">
260 <term><filename class="libraryfile">liblua.so</filename></term>
261 <listitem>
262 <para>
263 contains the <application>Lua</application> API functions.
264 </para>
265 <indexterm zone="lua liblua">
266 <primary sortas="c-liblua">liblua.so</primary>
267 </indexterm>
268 </listitem>
269 </varlistentry>
270
271 </variablelist>
272
273 </sect2>
274
275</sect1>
Note: See TracBrowser for help on using the repository browser.