# 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= \
    --enable-introspection=no

make install
cd ..
rm -rf librsvg-2.40.1
rm librsvg-2.40.1.tar.xz

exit 0
