# gnumeric 1.12.9 depends on gtk3

# Depends on libgsf
# Depends on goffice 0.8 (>= 0.8.15)

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/gnumeric/1.10/gnumeric-1.10.17.tar.xz
tar xf gnumeric-1.10.17.tar.xz
cd gnumeric-1.10.17

./configure --prefix= \
    --without-perl \
    --without-python

# This is a bug:
touch doc/C/gnumeric-C.omf.out

make install

cd ..
rm -rf gnumeric-1.10.17
rm gnumeric-1.10.17.tar.xz

exit 0
