mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
15 lines
250 B
Bash
Executable File
15 lines
250 B
Bash
Executable File
#!/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
|