pkg://blitz++_0.8-4_arm.deb:1425778/prerm
info downloads
#!/bin/sh
# Pre-removal script compliant with Debian Policy 3.1.1
PACKAGE=blitz++
# Automatically added by dh_installdocs
if [ "$1" = remove ] || [ "$1" = upgrade ] && \
which install-docs >/dev/null 2>&1; then
install-docs -r blitz++
fi
# End automatically added section
# Automatically added by dh_installinfo
if [ "$1" = remove ] || [ "$1" = upgrade ]; then
install-info --quiet --remove /usr/share/info/blitz.info
fi
# End automatically added section
# Remove links to /usr/doc
if [ \( "$1" = upgrade -o "$1" = remove \) \
-a -L /usr/doc/$PACKAGE ]; then
rm -f /usr/doc/$PACKAGE
fi
# Unregister documentation
if [ "$1" = remove -o "$1" = upgrade ]; then
if command -v install-docs >/dev/null 2>&1; then
install-docs -r $PACKAGE
fi
fi