# Exit on error:
set -e

wget https://www.x.org/releases/individual/font/font-misc-misc-1.1.2.tar.bz2
tar xf font-misc-misc-1.1.2.tar.bz2
cd font-misc-misc-1.1.2
./configure --prefix=
make install
cd ..
rm -rf font-misc-misc-1.1.2
rm font-misc-misc-1.1.2.tar.bz2

echo
echo 'Now update the fontdir as root with:'
echo 'cd /share/fonts/X11/misc'
echo 'mkfontdir'
echo
echo 'Then, under Xorg:'
echo 'xset fp rehash'

exit 0
