postinst is in manpages-es-extra 0.8a-17.
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 | #! /bin/sh
set -e
if [ -x /usr/sbin/chmanconfig ]; then
chmanconfig --add --lang=es
fi
cat<<EOT
To enable these manpages set LC_MESSAGES to 'es' (or es_ZZ where ZZ is your
contry code). Man will then search for Spanish manpages under
/usr/share/man/es.
Para activar estas p�ginas de manual ponga LC_MESSAGES a 'es'
(o es_ZZ donde ZZ es el c�digo de su pais). Man buscar� sus
p�ginas bajo /usr/share/man/es.
EOT
|