postinst is in libatlas3-base 3.10.2-9.
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
update-alternatives --install /usr/lib/libblas.so.3 libblas.so.3 \
/usr/lib/atlas-base/atlas/libblas.so.3 35
update-alternatives --install /usr/lib/liblapack.so.3 liblapack.so.3 \
/usr/lib/atlas-base/atlas/liblapack.so.3 35
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
exit 0
|