#!/bin/sh

#Thanks to Andrew Zabolotny / zap for the following

case "$1" in
    remove)
        if test -x /usr/bin/fc-cache; then
            fc-cache -fsv
        fi

        # Kick maemo-launcher to re-read the fontconfig
        #if test -x /etc/init.d/maemo-launcher; then
        #    /etc/init.d/maemo-launcher force-reload
        #fi
        ;;
esac