/usr/lib/emacsen-common/packages/remove/mew is in mew 1:6.7-4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #! /bin/sh
# /usr/lib/emacsen-common/packages/remove/mew
set -e
FLAVOR=$1
PACKAGE=mew
PKGSNAME=mew
case $FLAVOR in
emacs|*xemacs*|emacs20|emacs19|mule2)
exit 0
;;
esac
ELCDIR=/usr/share/$FLAVOR/site-lisp/$PKGSNAME
echo "remove/$PACKAGE: purging byte-compiled files for $FLAVOR"
rm -rf "$ELCDIR"
exit 0
|