# Depends on libxfixes

# Exit on error:
set -e

wget http://www.x.org/releases/individual/lib/libXcursor-1.1.14.tar.bz2
tar xf libXcursor-1.1.14.tar.bz2
cd libXcursor-1.1.14
./configure --prefix=
make install
cd ..
rm -rf libXcursor-1.1.14
rm libXcursor-1.1.14.tar.bz2

exit 0
