#!/bin/sh
## ----------------------------------------------------------------------
## debian/postinst : postinstallation script for hex-a-hop
## ----------------------------------------------------------------------

## ----------------------------------------------------------------------
set -e

MAEMO_SELECT_MENU=/usr/bin/maemo-select-menu-location

oldversion="$2"
if [ -z "$oldversion" ]; then
  if [ -f $MAEMO_SELECT_MENU ]
  then
    maemo-select-menu-location hex-a-hop.desktop
  fi
  gtk-update-icon-cache -f /usr/share/icons/hicolor
fi

exit 0
