#!/bin/sh -e

if [ -x /usr/bin/gtk-update-icon-cache ]; then
  gtk-update-icon-cache -f /usr/share/icons/hicolor
fi

case "$1" in
    configure)
        [ -z "$2" ] && \
	 if [ -x /usr/bin/maemo-select-menu-location ]; then
	  maemo-select-menu-location milkytrackerlowres.desktop
	 fi
        ;;
esac

