mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
15 lines
554 B
Bash
Executable File
15 lines
554 B
Bash
Executable File
#! /bin/bash
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--enable-fts5 \
|
|
CFLAGS="-g -O2 \
|
|
-DSQLITE_ENABLE_FTS4=1 \
|
|
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
|
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 \
|
|
-DSQLITE_ENABLE_DBSTAT_VTAB=1 \
|
|
-DSQLITE_SECURE_DELETE=1 \
|
|
-DSQLITE_ENABLE_FTS3_TOKENIZER=1" &&
|
|
read -p "Compile?" && make -j2 &&
|
|
read -p "Install?" && sudo -S porg -lp sqlite-3.24.0 "make -j1 install"
|