# Exit on error:
set -e

wget -c http://links.twibright.com/download/links-2.8.tar.bz2
tar xf links-2.8.tar.bz2
cd links-2.8

./configure \
    --prefix=/usr \
    --enable-graphics \
    --with-ssl

make
make install

cd ..
exit 0
