# Depends on libcroco

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/librsvg/2.40/librsvg-2.40.1.tar.xz
tar xf librsvg-2.40.1.tar.xz
cd librsvg-2.40.1

./configure \
    --prefix=/usr \
    --enable-introspection=no

make
make install

cd ..
exit 0
