#!/bin/sh
set -e

#DEBHELPER#

if [ "$1" = purge ]; then
	target=/etc/xdg/menus/applications-merged/hamradio.menu
	if [ -f $target -a ! -L $target ]; then
		rm $target
	fi
fi
