#! /bin/sh
# /usr/lib/emacsen-common/packages/remove/apel
set -e

FLAVOR=$1
PACKAGE=apel
ELCDIR=/usr/share/$FLAVOR/site-lisp/$PACKAGE

case $FLAVOR in
    emacs19|mule2|xemacs19)
    exit 0
    ;;
esac

echo "remove/$PACKAGE: purging byte-compiled files for $FLAVOR"
rm -rf "$ELCDIR"
if [ -L "/etc/$FLAVOR/site-start.d/20$PACKAGE.el" ]; then
    rm -f "/etc/$FLAVOR/site-start.d/20$PACKAGE.el"
fi
exit 0
