/usr/lib/emacsen-common/packages/remove/aplus-fsf-el is in aplus-fsf-el 4.22.1-4.1.
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 | #!/bin/sh -e
# /usr/lib/emacsen-common/packages/remove/aplus-fsf-el
FLAVOR=$1
PACKAGE=aplus-fsf-el
ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
if [ "${FLAVOR}" = "xemacs21" ]; then
echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
rm -rf $ELCDIR
fi
|