/usr/lib/emacsen-common/packages/remove/nethack-el is in nethack-el 1:0.9.5-3.
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 | #! /bin/sh -e
# Written by Mario Lang <mlang@debian.org>
FLAVOR=$1
ELCDIR=/usr/share/${FLAVOR}/site-lisp/nethack
if [ ${FLAVOR} != emacs ] && [ -d ${ELCDIR} ]; then
echo remove/nethack-el: purging byte-compiled files for ${FLAVOR}
rm -rf ${ELCDIR}
fi
|