postinst is in autoconf2.13 2.13-67.
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 | #! /bin/sh -e
# Remove diversions created by older versions of autoconf2.13.
for d in autoconf autoheader autoreconf; do
dpkg-divert --package autoconf2.13 --remove --rename \
--divert /usr/bin/${d}2.50 /usr/bin/${d}
dpkg-divert --package autoconf2.13 --remove --rename \
--divert /usr/share/man/man1/${d}2.50.1.gz \
/usr/share/man/man1/${d}.1.gz
done
|