7.26. SQLite-3.49.1

7.26.1. Introduction to SQLite

The SQLite package is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.

Approximate build time: 0.3 SBU
Required disk space: 123 MB

7.26.2. Installation of SQLite

Configure SQLite by running the following commands:

./configure --prefix=/usr     \
            --disable-static  \
            --enable-fts{4,5} \
            CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1 \
                      -DSQLITE_ENABLE_UNLOCK_NOTIFY=1   \
                      -DSQLITE_ENABLE_DBSTAT_VTAB=1     \
                      -DSQLITE_SECURE_DELETE=1

Build SQLite by running the following commands:

make

Install SQLite by running the following commands:

make install