# Depends on boost
# Depends on fribidi
# Depends on wv

# Exit on error:
set -e

wget http://abiword.org/downloads/abiword/3.0.0/source/abiword-3.0.0.tar.gz
tar xf abiword-3.0.0.tar.gz
cd abiword-3.0.0

./configure \
    --prefix=/usr \
    --with-gtk2

make
make install

cd ..
exit 0
