#!/bin/bash
set +h
set -e

cd $PKGDIR
./configure --prefix=/usr --sysconfdir=/etc
make
make install
echo -e "\n\nTotalseconds: $SECONDS\n"
exit
