#!/bin/sh
# postrm script
#
# see: dh_installdeb(1)

set -e

if [ -f /usr/share/applications/sparky-wine-uninstaller.desktop ]; then
	rm -f /usr/share/applications/sparky-wine-uninstaller.desktop
fi

if [ -f /usr/share/applications/sparky-wine-winecfg.desktop ]; then
	rm -f /usr/share/applications/sparky-wine-winecfg.desktop
fi

if [ -x "`which update-menus 2>/dev/null`" ]; then
	update-menus
fi


