/usr/lib/emacsen-common/packages/remove/x-face-el is in x-face-el 1.3.6.24-14.
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 20 21 22 23 24 | #!/bin/sh
# /usr/lib/emacsen-common/packages/remove/x-face-el
set -e
FLAVOR=$1
PACKAGE="x-face-el"
if [ -z "${FLAVOR}" ]; then
echo Need argument to determin FLAVOR of emacsen
exit 1
fi
if [ -z "${PACKAGE}" ]; then
echo Internal error: need package name
exit 1
fi
if [ "X${FLAVOR}" = Xemacs ]; then exit 0; fi
ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
echo -n "remove/${PACKAGE}: Handling removal of emacsen flavor ${FLAVOR} ..."
rm -rf ${ELCDIR}
echo " done."
exit 0
|