# Depends on xorg-libs (libX11?)
# Depends on libxft (for dillo)

# Exit on error:
set -e

wget http://fltk.org/pub/fltk/1.3.3/fltk-1.3.3-source.tar.gz
tar xf fltk-1.3.3-source.tar.gz
cd fltk-1.3.3
./configure --prefix=
make install
cd ..
rm -rf fltk-1.3.3
rm fltk-1.3.3-source.tar.gz

exit 0
