This file is indexed.

prerm is in mame 0.195+dfsg.1-2.

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
18
#!/bin/sh
set -e
# Automatically added by dh_usrlocal/11.1.6ubuntu1
(
	while read dir; do
		rmdir "$dir" 2>/dev/null || true
	done
) << DATA
/usr/local/share/games/mame/samples
/usr/local/share/games/mame/roms
/usr/local/share/games/mame/hash
/usr/local/share/games/mame/crosshair
/usr/local/share/games/mame/cheat
/usr/local/share/games/mame/artwork
/usr/local/share/games/mame
/usr/local/share/games
DATA
# End automatically added section