source: server/databases/sqlite.xml@ 4c2c5ad

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.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 4c2c5ad was 4c2c5ad, checked in by Douglas R. Reno <renodr@…>, 5 years ago

Update to acpid-2.0.32
Tags

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

  • Property mode set to 100644
File size: 7.6 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 sqlite-dl-version "3290000">
8 <!ENTITY sqlite-doc-version "3290000">
9
10<!-- When updating, do not forget the above entities -->
11
12 <!ENTITY sqlite-download-http "https://sqlite.org/2019/sqlite-autoconf-&sqlite-dl-version;.tar.gz">
13 <!ENTITY sqlite-download-ftp " ">
14 <!ENTITY sqlite-md5sum "8f3dfe83387e62ecb91c7c5c09c688dc">
15 <!ENTITY sqlite-size "2.7 MB">
16 <!ENTITY sqlite-buildsize "72 MB">
17 <!ENTITY sqlite-time "0.4 SBU (Using parallelism=4)">
18
19 <!ENTITY sqlite-docs-download "https://sqlite.org/2019/sqlite-doc-&sqlite-doc-version;.zip">
20 <!ENTITY sqlite-docs-md5sum "ba741a8c1c64505c56990ae5e135d84f">
21 <!ENTITY sqlite-docs-size "9.0 MB">
22]>
23
24<sect1 id="sqlite" xreflabel="SQLite-&sqlite-version;">
25 <?dbhtml filename="sqlite.html"?>
26
27 <sect1info>
28 <othername>$LastChangedBy$</othername>
29 <date>$Date$</date>
30 </sect1info>
31
32 <title>SQLite-&sqlite-version;</title>
33
34 <indexterm zone="sqlite">
35 <primary sortas="a-SQLite">SQLite</primary>
36 </indexterm>
37
38 <sect2 role="package">
39 <title>Introduction to SQLite</title>
40
41 <para>
42 The <application>SQLite</application> package is a software library that
43 implements a self-contained, serverless, zero-configuration, transactional
44 SQL database engine.
45 </para>
46
47 &lfs90_checked;
48
49 <bridgehead renderas="sect3">Package Information</bridgehead>
50 <itemizedlist spacing="compact">
51 <listitem>
52 <para>
53 Download (HTTP): <ulink url="&sqlite-download-http;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download (FTP): <ulink url="&sqlite-download-ftp;"/>
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download MD5 sum: &sqlite-md5sum;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Download size: &sqlite-size;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated disk space required: &sqlite-buildsize;
74 </para>
75 </listitem>
76 <listitem>
77 <para>
78 Estimated build time: &sqlite-time;
79 </para>
80 </listitem>
81 </itemizedlist>
82
83 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
84 <itemizedlist spacing="compact">
85 <title>Optional Documentation</title>
86 <listitem>
87 <para>
88 Download (HTTP): <ulink url="&sqlite-docs-download;"/>
89 </para>
90 </listitem>
91 <listitem>
92 <para>
93 Download MD5 sum: &sqlite-docs-md5sum;
94 </para>
95 </listitem>
96 <listitem>
97 <para>
98 Download size: &sqlite-docs-size;
99 </para>
100 </listitem>
101 </itemizedlist>
102
103 <bridgehead renderas="sect3">SQLite Dependencies</bridgehead>
104
105 <bridgehead renderas="sect4">Optional</bridgehead>
106 <para role="optional">
107 <ulink url="http://www.thrysoee.dk/editline/">libedit</ulink> and
108 <xref linkend="unzip"/> (required to unzip the documentation)
109 </para>
110
111 <para condition="html" role="usernotes">
112 User Notes: <ulink url="&blfs-wiki;/sqlite"/>
113 </para>
114 </sect2>
115
116 <sect2 role="installation">
117 <title>Installation of SQLite</title>
118
119 <para>
120 If you downloaded the optional documentation, issue the following command
121 to install the documentation into the source tree:
122 </para>
123
124<screen><userinput>unzip -q ../sqlite-doc-&sqlite-doc-version;.zip</userinput></screen>
125
126 <para>
127 Install <application>SQLite</application> by running the following
128 commands:
129 </para>
130
131<screen><userinput>./configure --prefix=/usr \
132 --disable-static \
133 --enable-fts5 \
134 CFLAGS="-g -O2 \
135 -DSQLITE_ENABLE_FTS3=1 \
136 -DSQLITE_ENABLE_FTS4=1 \
137 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
138 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 \
139 -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
140 -DSQLITE_SECURE_DELETE=1 \
141 -DSQLITE_ENABLE_FTS3_TOKENIZER=1" &amp;&amp;
142make</userinput></screen>
143
144 <para>
145 This package does not come with a test suite.
146 </para>
147
148 <para>
149 Now, as the <systemitem class="username">root</systemitem> user:
150 </para>
151
152<screen role="root"><userinput>make install</userinput></screen>
153
154 <para>
155 If you downloaded the optional documentation, issue the following commands
156 as the <systemitem class="username">root</systemitem> user to install it:
157 </para>
158
159<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/sqlite-&sqlite-version; &amp;&amp;
160cp -v -R sqlite-doc-&sqlite-doc-version;/* /usr/share/doc/sqlite-&sqlite-version;</userinput></screen>
161
162 </sect2>
163
164 <sect2 role="commands">
165 <title>Command Explanations</title>
166
167 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
168 href="../../xincludes/static-libraries.xml"/>
169
170 <para>
171 <parameter>--enable-fts5</parameter>: enable version 5 of the full text
172 search extension.
173 </para>
174
175 <para>
176 <parameter>CFLAGS="-g -O2
177 -DSQLITE_ENABLE_FTS3=1
178 -DSQLITE_ENABLE_FTS4=1
179 -DSQLITE_ENABLE_COLUMN_METADATA=1
180 -DSQLITE_SECURE_DELETE
181 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1
182 -DSQLITE_ENABLE_DBSTAT_VTAB=1"</parameter>: Applications such as
183 <application>Firefox</application> require secure delete and enable
184 unlock notify to be turned on.
185 Since <application>firefox-41</application> the dbstat virtual table and
186 FTS3/4 are also required. The only way to do this is to include them in
187 the CFLAGS. By default, these are set to <literal>"-g -O2"</literal> so we
188 specify that to preserve those settings. You may, of course, wish to omit
189 the <literal>'-g'</literal> if you do not wish to create debugging
190 information. For further information on what can be specified see <ulink
191 url="http://www.sqlite.org/compile.html"/>.
192 </para>
193
194 </sect2>
195
196 <sect2 role="content">
197 <title>Contents</title>
198
199 <segmentedlist>
200 <segtitle>Installed Program</segtitle>
201 <segtitle>Installed Library</segtitle>
202 <segtitle>Installed Directory</segtitle>
203
204 <seglistitem>
205 <seg>
206 sqlite3
207 </seg>
208 <seg>
209 libsqlite3.so
210 </seg>
211 <seg>
212 /usr/share/doc/sqlite-&sqlite-version;
213 </seg>
214 </seglistitem>
215 </segmentedlist>
216
217 <variablelist>
218 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
219 <?dbfo list-presentation="list"?>
220 <?dbhtml list-presentation="table"?>
221
222 <varlistentry id="sqlite3">
223 <term><command>sqlite3</command></term>
224 <listitem>
225 <para>
226 A terminal-based front-end to the <application>SQLite</application>
227 library that can evaluate queries interactively and display the
228 results.
229 </para>
230 <indexterm zone="sqlite sqlite3">
231 <primary sortas="b-sqlite3">sqlite3</primary>
232 </indexterm>
233 </listitem>
234 </varlistentry>
235
236 <varlistentry id="libsqlite3">
237 <term><filename class="libraryfile">libsqlite3.so</filename></term>
238 <listitem>
239 <para>
240 contains the <application>SQLite</application> API functions.
241 </para>
242 <indexterm zone="sqlite libsqlite3">
243 <primary sortas="c-libsqlite3">libsqlite3.so</primary>
244 </indexterm>
245 </listitem>
246 </varlistentry>
247
248 </variablelist>
249
250 </sect2>
251
252</sect1>
Note: See TracBrowser for help on using the repository browser.