postinst is in tf5 5.0beta8-6.
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 | #! /bin/sh
set -e
# Share nicely with TinyFugue 4.x.
update-alternatives --install /usr/bin/tf tf /usr/bin/tf5 15 \
--slave /usr/share/man/man1/tf.1.gz tf.1.gz /usr/share/man/man1/tf5.1.gz
exit 0
|