2009-07-26 14:17:47 +08:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
|
|
%general-entities;
|
|
|
|
|
|
|
|
<!ENTITY sqlite-download-http "http://sqlite.org/sqlite-3.6.16.tar.gz">
|
|
|
|
<!ENTITY sqlite-download-ftp " ">
|
|
|
|
<!ENTITY sqlite-md5sum "d7c57e91fbeb630c19f82eec3ef73dae">
|
|
|
|
<!ENTITY sqlite-size "2.7 MB">
|
|
|
|
<!ENTITY sqlite-buildsize "33 MB">
|
|
|
|
<!ENTITY sqlite-time "0.5 SBU (Test suite is an additional 0.5 SBU)">
|
|
|
|
]>
|
|
|
|
|
|
|
|
<sect1 id="sqlite" xreflabel="SQLite-&sqlite-version;">
|
|
|
|
<?dbhtml filename="sqlite.html"?>
|
|
|
|
|
|
|
|
<sect1info>
|
|
|
|
<othername>$LastChangedBy$</othername>
|
|
|
|
<date>$Date$</date>
|
|
|
|
</sect1info>
|
|
|
|
|
|
|
|
<title>SQLite-&sqlite-version;</title>
|
|
|
|
|
|
|
|
<indexterm zone="sqlite">
|
|
|
|
<primary sortas="a-SQLite">SQLite</primary>
|
|
|
|
</indexterm>
|
|
|
|
|
|
|
|
<sect2 role="package">
|
|
|
|
<title>Introduction to SQLite</title>
|
|
|
|
|
|
|
|
<para>The <application>SQLite</application> package is a software
|
|
|
|
library that implements a self-contained, serverless,
|
|
|
|
zero-configuration, transactional SQL database engine.</para>
|
|
|
|
|
2009-08-01 05:36:53 +08:00
|
|
|
&lfs65_checked;
|
|
|
|
|
2009-07-26 14:17:47 +08:00
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
|
|
<itemizedlist spacing="compact">
|
|
|
|
<listitem>
|
|
|
|
<para>Download (HTTP): <ulink url="&sqlite-download-http;"/></para>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<para>Download (FTP): <ulink url="&sqlite-download-ftp;"/></para>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<para>Download MD5 sum: &sqlite-md5sum;</para>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<para>Download size: &sqlite-size;</para>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<para>Estimated disk space required: &sqlite-buildsize;</para>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<para>Estimated build time: &sqlite-time;</para>
|
|
|
|
</listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
|
|
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
|
|
<para role="optional"><xref linkend="tcl"/> (Required to run the test suite)</para>
|
|
|
|
|
|
|
|
<para condition="html" role="usernotes">User Notes:
|
|
|
|
<ulink url="&blfs-wiki;/sqlite"/></para>
|
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|
|
|
|
<sect2 role="installation">
|
|
|
|
<title>Installation of SQLite</title>
|
|
|
|
|
|
|
|
<para>Install <application>SQLite</application> by running the following
|
|
|
|
commands:</para>
|
|
|
|
|
|
|
|
<screen><userinput>./configure --prefix=/usr &&
|
|
|
|
make</userinput></screen>
|
|
|
|
|
|
|
|
<para>To test the results, issue: <command>make test</command>.</para>
|
|
|
|
|
|
|
|
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
|
|
|
|
|
|
|
|
<screen role="root"><userinput>make install</userinput></screen>
|
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|
|
|
|
<sect2 role="content">
|
|
|
|
<title>Contents</title>
|
|
|
|
|
|
|
|
<segmentedlist>
|
|
|
|
<segtitle>Installed Program</segtitle>
|
|
|
|
<segtitle>Installed Library</segtitle>
|
|
|
|
<segtitle>Installed Directories</segtitle>
|
|
|
|
|
|
|
|
<seglistitem>
|
|
|
|
<seg>sqlite3</seg>
|
|
|
|
<seg>libsqlite3.{so,a}</seg>
|
|
|
|
<seg>None</seg>
|
|
|
|
</seglistitem>
|
|
|
|
</segmentedlist>
|
|
|
|
|
|
|
|
<variablelist>
|
|
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
|
|
<?dbfo list-presentation="list"?>
|
|
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
|
|
|
|
<varlistentry id="sqlite3">
|
|
|
|
<term><command>sqlite3</command></term>
|
|
|
|
<listitem>
|
|
|
|
<para>A terminal-based front-end to the <application>SQLite
|
|
|
|
</application> library that can evaluate queries interactively
|
|
|
|
and display the results.</para>
|
|
|
|
<indexterm zone="sqlite sqlite3">
|
|
|
|
<primary sortas="b-sqlite3">sqlite3</primary>
|
|
|
|
</indexterm>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry id="libsqlite3">
|
|
|
|
<term><filename class='libraryfile'>libsqlite3.{so,a}</filename></term>
|
|
|
|
<listitem>
|
|
|
|
<para>Contains the <application>SQLite</application> API functions.</para>
|
|
|
|
<indexterm zone="sqlite libsqlite3">
|
|
|
|
<primary sortas="c-libsqlite3">libsqlite3.{so,a}</primary>
|
|
|
|
</indexterm>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
</variablelist>
|
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|
|
|
|
</sect1>
|