#!/bin/sh -e

./configure \
    --prefix=/usr

make
make DESTDIR="$1" install

ln -s /usr/bin/less "$1/usr/bin/more"
