postrm is in libreoffice-common 1:3.5.2-2ubuntu1.
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 36 37 38 | #!/bin/sh
set -e
case "$1" in
remove|abort-install|abort-upgrade)
dpkg-maintscript-helper rm_conffile "/etc/bash_completion.d/ooffice.sh" 1:3.3.0~rc4-2 libreoffice-common -- "$@"
dpkg-maintscript-helper mv_conffile \
"/etc/openoffice/psprint.conf" "/etc/libreoffice/psprint.conf" "" libreoffice-common -- "$@"
dpkg-maintscript-helper mv_conffile \
"/etc/openoffice/sofficerc" "/etc/libreoffice/sofficerc" "" libreoffice-common -- "$@"
dpkg-maintscript-helper mv_conffile \
"/etc/openoffice/soffice.sh" "/etc/libreoffice/soffice.sh" "" libreoffice-common -- "$@"
rm -rf /`echo @OODDIR@ | sed -e s,usr/,var/,g`/share/prereg/bundled
rmdir /`echo usr/lib/libreoffice | sed -e s,usr/,var/,g`/share/prereg/ || true
rmdir /`echo usr/lib/libreoffice | sed -e s,usr/,var/,g`/share/ || true
# this belongs to -core, but won't work until we have -common stuff removed, too, so try here again
# in adduition to -core
rmdir /`echo usr/lib/libreoffice | sed -e s,usr/,var/,g`/program/ || true
rmdir /`echo usr/lib/libreoffice | sed -e s,usr/,var/,g` || true
# and try to remove /@OOBRANDDIR@ itself
rmdir /`echo usr/lib/libreoffice | sed -e s,usr/,var/,g` || true
;;
esac
# Automatically added by dh_installmime
if [ -x "`which update-mime-database 2>/dev/null`" ]; then
update-mime-database /usr/share/mime
fi
# End automatically added section
# Automatically added by dh_icons
if which update-icon-caches >/dev/null 2>&1 ; then
update-icon-caches /usr/share/icons/locolor
fi
# End automatically added section
|