]> git.itanic.dy.fi Git - maemo-mapper/blob - debian/postinst
Administrative changes in preparation for release of Maemo Mapper v2.6.2.
[maemo-mapper] / debian / postinst
1 #!/bin/sh -e
2
3 # The clock might be wrong and we know that we need to update the icon
4 # cache so we just force it.
5
6 gtk-update-icon-cache -f /usr/share/icons/hicolor
7
8 # Now we are ready to let the user move the entry around, but only if
9 # this is a new install
10
11 oldversion="$2"
12 if [ -z "$oldversion" ]; then
13   maemo-select-menu-location maemo-mapper.desktop
14 fi
15
16 #DEBHELPER#
17
18 exit 0