2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 08:22:28 +00:00
repo/extra/sqlite/build

17 lines
287 B
Plaintext
Raw Normal View History

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