blob: 4f5b88ec909f33c56e627f56488f07d9f35d08a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh -e
export CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1"
sed 's/ -ltinfo//g' configure > configure.bak
mv configure.bak configure
chmod +x configure
./configure \
--prefix=/usr \
--enable-threadsafe \
--enable-dynamic-extensions \
--enable-fts5
make -j 1
make DESTDIR="$1" install
|