# Exit on error:
set -e

wget http://downloads.sourceforge.net/project/lxde/GPicView%20%28image%20Viewer%29/GpicView%200.2.4/gpicview-0.2.4.tar.gz
tar xf gpicview-0.2.4.tar.gz
cd gpicview-0.2.4

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
