This file is indexed.

prerm is in libatlas3-base 3.10.3-5.

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

if [ "$1" != "upgrade" ]
then
    update-alternatives --remove libblas.so.3-x86_64-linux-gnu \
	                /usr/lib/x86_64-linux-gnu/atlas/libblas.so.3

    update-alternatives --remove liblapack.so.3-x86_64-linux-gnu \
                        /usr/lib/x86_64-linux-gnu/atlas/liblapack.so.3
fi



exit 0