summaryrefslogtreecommitdiff
path: root/debian/urweb-mode.emacsen-remove
blob: b45668c730c52510342c59fe4b96eee5823cc845 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh -e
# /usr/lib/emacsen-common/packages/remove/urweb-mode
FLAVOR=$1
PACKAGE=urweb-mode
if [ ${FLAVOR} != emacs ]; then
    echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
    rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
fi
exit 0