# Depends on itstool
# Depends on gsettings-desktop-schemas (gsett-desk-schem)

# Exit on error:
set -e

wget https://download-fallback.gnome.org/sources/gthumb/3.2/gthumb-3.2.5.tar.xz \
    --no-check-certificate

tar xf gthumb-3.2.5.tar.xz
cd gthumb-3.2.5
./configure --prefix=
make install
cd ..
rm -rf gthumb-3.2.5
rm gthumb-3.2.5.tar.xz

exit 0
