The SQLite package is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
This package is known to build and work properly using an LFS-7.0 platform.
Download (HTTP): http://sqlite.org/sqlite-autoconf-3071000.tar.gz
Download MD5 sum: 9ed2ca93577b58cfa0d01f64b9312ab9
Download size: 1.7 MB
Estimated disk space required: 46 MB (includes optional documentation)
Estimated build time: 0.4 SBU
Optional Documentation
Download (HTTP): http://sqlite.org/sqlite-doc-3071000.zip
Download MD5 sum: d4c8070ea2cec54b77002c265e680b0f
Download size: 3.5 MB
UnZip-6.0 (required to unzip the documentation)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/sqlite
If you downloaded the optional documentation, issue the following command to install the documentation into the source tree:
unzip -q ../sqlite-doc-3071000.zip
Install SQLite by running the following commands:
./configure --prefix=/usr --disable-static \ CFLAGS="-g -O2 -DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1" && make
This package does not come with a test suite.
Now, as the root user:
make install
If you downloaded the optional documentation, issue the following
commands as the root user to
install it:
install -v -m755 -d /usr/share/doc/sqlite-3.7.10 && cp -v -R sqlite-doc-3071000/* /usr/share/doc/sqlite-3.7.10
CFLAGS="-g -O2 -DSQLITE_SECURE_DELETE
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1": Applications such as
firefox require secure delete and
enable unlock notify to be turned on. The only way to do this is to
include them in the CFLAGS. By default, these are set to
"-g -O2" so we specify that to
preserve those settings. You may, of course, wish to omit the
'-g' if you do not wish to create
debugging information. For further information on what can be
specified see http://www.sqlite.org/compile.html.
--disable-static: This
parameter stops it installing a static version of libsqlite3.
Last updated on 2012-02-02 17:02:02 +0000