#!/bin/sh
# /usr/lib/emacsen-common/packages/remove/skk
# [ This particular script hasn't been tested either, so be careful. ]
set -e

FLAVOR=$1
echo remove/skk: Handling removal of emacsen flavor ${FLAVOR}

if [ ${FLAVOR} != emacs ]
then
    echo emacsen-common: purging byte-compiled files for ${FLAVOR}
    rm -rf /usr/share/${FLAVOR}/site-lisp/skk
fi

exit 0;
