#!/bin/sh -e
# 
#DEBHELPER#
case "$1" in
        configure)
                if test -x /usr/bin/update-menus; then update-menus; fi
                if [ -x /usr/bin/update-desktop-database ]; then
                        update-desktop-database
                        fi
                ;;
        *)
esac

