#!/bin/sh
set -e

case $1 in
    remove)
	# Kill symlinks created in postinst
	rm -f /usr/bin/man /usr/bin/mandb
	;;
esac



exit 0
