This file is indexed.

prerm is in emacsen-common 2.0.7.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

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
#!/bin/sh

set -e

/usr/lib/emacsen-common/emacs-package-remove --prerm emacsen-common
rm -f /var/lib/emacsen-common/state/package/installed/emacsen-common

# Automatically added by dh_usrlocal
(
	while read dir; do
		rmdir "$dir" 2>/dev/null || true
	done
) << DATA
/usr/local/share/emacs/site-lisp
/usr/local/share/emacs
DATA
# End automatically added section