This file is indexed.

postinst is in libmudflap0 4.6.3-1ubuntu5.

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

set -e

case "$1" in configure)
    if [ -d /usr/share/doc/libmudflap0 ] && [ ! -h /usr/share/doc/libmudflap0 ]; then
	rm -rf /usr/share/doc/libmudflap0
	ln -s gcc-4.6-base /usr/share/doc/libmudflap0
    fi
esac

# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
	ldconfig
fi
# End automatically added section