#!/bin/bash
# Build script for autoconf

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX

gmake
gmake install DESTDIR="$PKGDIR"
