repo/extra/sqlite/build
2021-07-03 20:42:02 +00:00

17 lines
287 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 -j1
make DESTDIR="$1" install