postinst is in automake1.7 1.7.9-9.1.
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 | #!/bin/sh -e
ver=1.7
prio=11
update-alternatives --install /usr/bin/automake automake \
/usr/bin/automake-$ver $prio \
--slave /usr/bin/aclocal aclocal /usr/bin/aclocal-$ver \
--slave /usr/share/man/man1/automake.1.gz automake.1.gz \
/usr/share/man/man1/automake-$ver.1.gz \
--slave /usr/share/man/man1/aclocal.1.gz aclocal.1.gz \
/usr/share/man/man1/aclocal-$ver.1.gz \
--slave /usr/share/info/automake.info.gz automake.info.gz \
/usr/share/info/automake-$ver.info.gz
|