1#!/bin/sh -e
2
3./configure \
4 --prefix=/usr \
5 --disable-exec-static-tramp \
6 --enable-static
7
8make
9make DESTDIR="$1" install
10
11# Compress manpages
12find "$1/usr/share/man" -type f -exec gzip -n -9 {} +
13
14rm -rf "$1/usr/share/info"