The SQLite package is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
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