#!/bin/sh

set -e

FILE=/etc/defoma/hints/ttf-arphic-uming.hints

if [ -f /usr/share/debconf/confmodule ]; then
  . /usr/share/debconf/confmodule
fi

db_purge


if [ -f $FILE ]; then
    if [ -x /usr/bin/defoma-font ]; then
        defoma-font purge-all $FILE || true
    fi
fi

#DEBHELPER#
