From 569a4304ab3e8d9ae82edd848086ce02e653b404 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 12 May 2010 23:29:30 +0200 Subject: games/sdlmame: Added to 12.2 repository --- games/sdlmame/doinst.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 games/sdlmame/doinst.sh (limited to 'games/sdlmame/doinst.sh') diff --git a/games/sdlmame/doinst.sh b/games/sdlmame/doinst.sh new file mode 100644 index 0000000000..787a7d4e51 --- /dev/null +++ b/games/sdlmame/doinst.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/mame.ini.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications +fi -- cgit v1.2.3