/usr/lib/emacsen-common/packages/remove/systemtap-common is in systemtap-common 3.1-3ubuntu0.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 12 13 14 15 16 17 18 19 | #!/bin/sh
# /usr/lib/emacsen-common/packages/remove/systemtap-common
set -e
PACKAGE=systemtap-common
FLAVOR=$1
elc_dir=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
case "${FLAVOR}" in
emacs)
;;
*)
echo remove/${PACKAGE}: Purging byte-compiled files for ${FLAVOR}
rm -f ${elc_dir}/*.elc ${elc_dir}/*.el
rmdir ${elc_dir} || true
;;
esac
exit 0;
|