1#!/bin/sh -e
2
3: > missing
4
5./configure \
6 --prefix=/usr \
7 --without-python \
8 --without-debugger \
9 --without-debug \
10 --without-crypto
11
12make
13make DESTDIR="$1" install
14
15# Remove docs
16rm -rf \
17 "$1/usr/share/gtk-doc" \
18 "$1/usr/share/doc"
19
20# Compress manpages
21find "$1/usr/share/man" -type f -exec gzip -n -9 {} +