postinst is in lib32ncurses5-dev 5.9-4.
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 | #!/bin/sh
set -e
# Remove spurious symlink created by ldconfig (see #224450)
if [ "$1" = "configure" -a -L /usr/lib32/libncurses.so.5 ]; then
rm -f /usr/lib32/libncurses.so.5
fi
|