# Exit on error:
set -e

wget ftp://ftp.remotesensing.org/pub/libtiff/tiff-4.0.3.tar.gz
tar xf tiff-4.0.3.tar.gz
cd tiff-4.0.3

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
