source: general/genlib/lzo.xml

trunk
Last change on this file was 99c90fa, checked in by Douglas R. Reno <renodr@…>, 2 months ago

Lots of tags

  • Property mode set to 100644
File size: 3.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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 lzo-download-http "https://www.oberhumer.com/opensource/lzo/download/lzo-&lzo-version;.tar.gz">
8 <!ENTITY lzo-download-ftp " ">
9 <!ENTITY lzo-md5sum "39d3f3f9c55c87b1e5d6888e1420f4b5">
10 <!ENTITY lzo-size "588 KB">
11 <!ENTITY lzo-buildsize "12 MB">
12 <!ENTITY lzo-time "0.3 SBU (with tests)">
13]>
14
15<sect1 id="lzo" xreflabel="LZO-&lzo-version;">
16 <?dbhtml filename="lzo.html"?>
17
18
19 <title>LZO-&lzo-version;</title>
20
21 <indexterm zone="lzo">
22 <primary sortas="a-LZO">LZO</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to LZO</title>
27
28 <para>
29 <application>LZO</application> is a data compression
30 library which is suitable for data decompression and compression in
31 real-time. This means it favors speed over compression ratio.
32 </para>
33
34 &lfs121_checked;
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>
40 Download (HTTP): <ulink url="&lzo-download-http;"/>
41 </para>
42 </listitem>
43 <listitem>
44 <para>
45 Download (FTP): <ulink url="&lzo-download-ftp;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download MD5 sum: &lzo-md5sum;
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download size: &lzo-size;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Estimated disk space required: &lzo-buildsize;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated build time: &lzo-time;
66 </para>
67 </listitem>
68 </itemizedlist>
69
70 </sect2>
71
72 <sect2 role="installation">
73 <title>Installation of LZO</title>
74
75 <para>
76 Install <application>LZO</application> by running the
77 following commands:
78 </para>
79
80<screen><userinput>./configure --prefix=/usr \
81 --enable-shared \
82 --disable-static \
83 --docdir=/usr/share/doc/lzo-&lzo-version; &amp;&amp;
84make</userinput></screen>
85
86 <para>
87 To test the results, issue: <command>make check</command>. All the
88 checks should pass. Now issue <command>make test</command> to run the full
89 suite of tests.
90 </para>
91
92 <para>
93 Now, as the <systemitem class="username">root</systemitem> user:
94 </para>
95
96<screen role="root"><userinput>make install</userinput></screen>
97
98 </sect2>
99
100 <sect2 role="commands">
101 <title>Command Explanations</title>
102
103 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
104 href="../../xincludes/static-libraries.xml"/>
105
106 </sect2>
107
108 <sect2 role="content">
109 <title>Contents</title>
110
111 <segmentedlist>
112 <segtitle>Installed Programs</segtitle>
113 <segtitle>Installed Libraries</segtitle>
114 <segtitle>Installed Directories</segtitle>
115
116 <seglistitem>
117 <seg>
118 None
119 </seg>
120 <seg>
121 liblzo2.so
122 </seg>
123 <seg>
124 /usr/include/lzo and
125 /usr/share/doc/lzo
126 </seg>
127 </seglistitem>
128 </segmentedlist>
129
130 <variablelist>
131 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
132 <?dbfo list-presentation="list"?>
133 <?dbhtml list-presentation="table"?>
134
135 <varlistentry id="liblzo2">
136 <term><filename class="libraryfile">liblzo2.so</filename></term>
137 <listitem>
138 <para>
139 is a data compression and decompression library
140 </para>
141 <indexterm zone="lzo liblzo2">
142 <primary sortas="c-liblzo2">liblzo2.so</primary>
143 </indexterm>
144 </listitem>
145 </varlistentry>
146
147 </variablelist>
148
149 </sect2>
150
151</sect1>
Note: See TracBrowser for help on using the repository browser.