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

FLAVOR=$1
PACKAGE=apel

case $FLAVOR in
    emacs)
    exit 0
    ;;
esac

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

echo "remove/$PACKAGE: purging byte-compiled files for $FLAVOR"
rm -rf "$ELCDIR"
exit 0
