# Exit on error:
set -e

wget http://ftp.gnome.org/pub/GNOME/sources/libwnck/2.31/libwnck-2.31.0.tar.xz
tar xf libwnck-2.31.0.tar.xz
cd libwnck-2.31.0

./configure \
    --prefix= \
    --enable-introspection=no
    
make install
cd ..
rm -rf libwnck-2.31.0
rm libwnck-2.31.0.tar.xz

exit 0
