# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/libIDL/0.8/libIDL-0.8.14.tar.bz2
tar xf libIDL-0.8.14.tar.bz2
cd libIDL-0.8.14.tar.bz2

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
