repo/extra/sqlite/build

15 lines
299 B
Plaintext
Raw Normal View History

2019-10-05 18:54:17 +00:00
#!/bin/sh -e
# Required by qt5 and possibly other software.
2022-08-01 19:40:33 +00:00
export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA"
2019-10-05 18:54:17 +00:00
./configure \
--prefix=/usr \
--enable-threadsafe \
--enable-dynamic-extensions \
--enable-fts5 \
ac_cv_search_readline=no \
2019-10-05 18:54:17 +00:00
2021-07-18 03:16:54 +00:00
make
2023-03-02 14:40:00 +00:00
make DESTDIR="$1" install