aboutsummaryrefslogtreecommitdiff
path: root/extra/sqlite/build
blob: 08c1fd2339efefa891039e336ca60df31c566c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

export CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1"

sed -i 's/ -ltinfo//g' configure

./configure \
    --prefix=/usr \
    --enable-threadsafe \
    --enable-dynamic-extensions \
    --enable-fts5

make -j 1
make DESTDIR="$1" install