/usr/lib/emacsen-common/packages/remove/dynare-common is in dynare-common 4.4.1-1build1.
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 | #!/bin/sh
set -e
FLAVOR=$1
elc_dir=/usr/share/${FLAVOR}/site-lisp/dynare-common
echo remove/foo: Handling removal of emacsen flavor ${FLAVOR}
if [ ${FLAVOR} != emacs ]
then
echo emacsen-common: purging byte-compiled files for ${FLAVOR}
rm -f ${elc_dir}/*.elc
rm -f ${elc_dir}/*.el # Install might have been interrupted.
rmdir --ignore-fail-on-non-empty ${elc_dir}
fi
exit 0;
|