#!/bin/bash
# Build script for libtool

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"
