1#!/bin/sh -e
2
3./configure \
4 --prefix=/usr \
5 --without-xmlwf \
6 --without-examples \
7 --without-tests \
8 --without-docbook
9
10make
11make DESTDIR="$1" install
12
13# Remove documentation (Changelogs, etc).
14rm -rf "${1:?}/usr/share"