repo/extra/sqlite/build

17 lines
287 B
Plaintext
Raw Normal View History

2019-10-05 12:54:17 -06:00
#!/bin/sh -e
2019-11-28 16:05:20 -07:00
export CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1"
2021-07-03 14:42:02 -06:00
sed 's/ -ltinfo//g' configure > _
mv -f _ configure
chmod +x configure
2019-10-05 12:54:17 -06:00
./configure \
--prefix=/usr \
--enable-threadsafe \
--enable-dynamic-extensions \
--enable-fts5
2020-02-14 09:54:12 -07:00
make -j1
2019-10-05 12:54:17 -06:00
make DESTDIR="$1" install