postinst is in xfonts-marumoji 0.2-11.
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 17 18 19 20 21 22 23 24 25 26 27 28 | #!/bin/sh
# Debian xfonts-marumoji package post-installation script
# based on xfonts-cjk's
# Copyright 1998, 1999 Branden Robinson. Licensed under the GNU GPL.
# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava.
set -e
#trap "echo ;\
# echo 'Received signal. Aborting configuration of xfonts-marumoji package.' ;\
# echo ;\
# exit 1" 1 2 3 15
case "$1" in
configure) ;;
abort-upgrade|abort-remove|abort-deconfigure)
exit 0 ;;
*)
echo "ERROR: xfonts-marumoji postinst called with unknown argument \"$1\"."
echo "Aborting configuration of xfonts-marumoji package."
exit 1 ;;
esac
# Automatically added by dh_installxfonts
if which update-fonts-dir >/dev/null 2>&1; then
update-fonts-dir --x11r7-layout misc;update-fonts-alias --include /etc/X11/fonts/misc/xfonts-marumoji.alias misc
fi
# End automatically added section
|