# Exit on error:
set -e

wget http://sylpheed.sraoss.jp/sylpheed/v3.3/sylpheed-3.3.1.tar.bz2
tar xf sylpheed-3.3.1.tar.bz2
cd sylpheed-3.3.1

./configure \
    --prefix=/usr \
    --enable-static=yes \
    --enable-shared=no

make
make install

cd ..
exit 0
