#!/bin/sh # miwm.postrm set -e PACKAGE="miwm" SECTION=x-window-manager BIN=/usr/bin/jwm Alternatives () { update-alternatives --remove $SECTION $BIN } Debhelper () { : # Automatically generated # Automatically added by dh_installmenu/13 if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi # End automatically added section } Main () { if [ "$1" = "remove" ] || [ "$1" = "purge" ] ; then Alternatives fi } Main "$@" # End of file