1#!/bin/sh -e
2
3./configure \
4 --prefix=/usr
5
6make
7make DESTDIR="$1" install
8
9# Compress manpages
10find "$1/usr/share/man" -type f -exec gzip -n -9 {} +
1#!/bin/sh -e
2
3./configure \
4 --prefix=/usr
5
6make
7make DESTDIR="$1" install
8
9# Compress manpages
10find "$1/usr/share/man" -type f -exec gzip -n -9 {} +