1#!/bin/sh -e
2
3# Required by qt5 and possibly other software.
4export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA"
5
6./configure \
7 --prefix=/usr \
8 --enable-threadsafe \
9 --enable-dynamic-extensions \
10 --enable-fts5 \
11 ac_cv_search_readline=no
12
13make
14make DESTDIR="$1" install
15
16# Compress manpages
17find "$1/usr/share/man" -type f -exec gzip -n -9 {} +