postinst is in openexr 1.6.1-7ubuntu1.
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 19 | #!/bin/sh
# $Id$
# vim:ts=4:sw=4:expandtab:
set -e
if [ "$1" = "configure" ]
then
# Convert empty directory into a symlink
if [ ! -L /usr/share/doc/openexr ]
then
rm -rf /usr/share/doc/openexr
ln -s /usr/share/doc/libopenexr6 /usr/share/doc/openexr
fi
fi
exit 0
|