preinst is in libopenblas-dev 0.2.18-1ubuntu1.
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
# In 0.2.8-4, /usr/lib/openblas-base/libopenblas.so was renamed to
# /usr/lib/openblas-base/libblas.so. It is therefore necessary to remove the
# old path from the alternatives system before adding the new.
if [ "$1" = "upgrade" ] && dpkg --compare-versions "$2" lt 0.2.8-4
then
update-alternatives --remove libblas.so /usr/lib/openblas-base/libopenblas.so 2>/dev/null
fi
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
exit 0
|