repo/extra/sqlite/build
2021-07-18 06:16:54 +03:00

17 lines
270 B
Bash
Executable File

#!/bin/sh -e
export CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1"
sed 's/ -ltinfo//g' configure > _
mv -f _ configure
chmod +x configure
./configure \
--prefix=/usr \
--enable-threadsafe \
--enable-dynamic-extensions \
--enable-fts5
make
make install