aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/maemo/debian/postinst
blob: 89b579a3f6785593c1aa63fb779c5ba971afa9a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh
if [ "$1" = "configure"  ] ; then
OSVER=$OSSO_VERSION
[ -z "$OSVER" -a -f /etc/osso_software_version ] && OSVER=`cat /etc/osso_software_version`
OSVER=`echo $OSVER | cut -d _ -f 2`
case $OSVER in
	2006*|2007*)
		#nothing to do
		true
		;;
	*)
		#ugly trick, until this icon is removed big icon in menu does not show
		[ -f /usr/share/icons/scummvm.xpm ] && rm /usr/share/icons/scummvm.xpm
		;;
esac
	[ -x /usr/bin/gtk-update-icon-cache ] && /usr/bin/gtk-update-icon-cache /usr/share/icons/hicolor
	[ -x /usr/bin/maemo-select-menu-location -a -z "$2" ] && /usr/bin/maemo-select-menu-location scummvm.desktop  tana_fi_games
fi
exit 0