mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
17 lines
287 B
Bash
Executable File
17 lines
287 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1"
|
|
|
|
sed 's/ -ltinfo//g' configure > _
|
|
mv -f _ configure
|
|
chmod +x configure
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-threadsafe \
|
|
--enable-dynamic-extensions \
|
|
--enable-fts5
|
|
|
|
make -j1
|
|
make DESTDIR="$1" install
|