From 6f8febc32df09fd640f027344c9f22dd88ffe687 Mon Sep 17 00:00:00 2001 From: Erik Hanson Date: Fri, 9 Jul 2010 12:15:00 -0500 Subject: games/mame: Added (Multiple Arcade Machine Emulator) Signed-off-by: Robby Workman --- games/mame/doinst.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 games/mame/doinst.sh (limited to 'games/mame/doinst.sh') diff --git a/games/mame/doinst.sh b/games/mame/doinst.sh new file mode 100644 index 000000000000..787a7d4e5154 --- /dev/null +++ b/games/mame/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