prerm is in tex-common 2.10.
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 | #!/bin/sh -e
#
# postinst maintainer script for the Debian tex-common package.
# $Id$
# remove dirs in /usr/local if empty
case $1 in
remove)
rmdir /usr/local/share/texmf 2>/dev/null || true
;;
esac
|