postrm is in t1-cyrillic 4.16+nmu1.
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 29 30 31 32 33 34 35 | #!/bin/sh
# Automatically added by dh_installxfonts
if [ -x "`which update-fonts-dir 2>/dev/null`" ]; then
update-fonts-scale Type1;update-fonts-dir --x11r7-layout Type1;update-fonts-alias --exclude /etc/X11/fonts/Type1/t1-cyrillic.alias Type1
fi
# End automatically added section
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/X11/fonts/X11R7/Type1/t1-cyrillic.scale 4.12+nmu1 -- "$@"
# End automatically added section
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/X11/fonts/X11R7/Type1/t1-cyrillic.alias 4.12+nmu1 -- "$@"
# End automatically added section
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/defoma/hints/t1-cyrillic.hints 4.14 -- "$@"
# End automatically added section
case "$1" in
purge|remove|disappear)
if which xftcache >/dev/null 2>&1; then
xftcache /usr/X11R6/lib/X11/fonts/Type1
xftcache /usr/share/fonts/X11/Type1
fi
;;
esac
case "$1" in
purge|remove|disappear)
if which fc-cache >/dev/null 2>&1; then
fc-cache /usr/X11R6/lib/X11/fonts/Type1
fc-cache /usr/share/fonts/X11/Type1
fi
;;
esac
|