# 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= \
    --enable-graphics \
    --with-ssl

make install
cd ..
rm -rf links-2.8
rm links-2.8.tar.bz2

exit 0
