# Exit on error:
set -e

wget http://downloads.sourceforge.net/project/check/check/0.9.11/check-0.9.11.tar.gz
tar xf check-0.9.11.tar.gz
cd check-0.9.11

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
