aboutsummaryrefslogtreecommitdiff
path: root/games/sdlmame/doinst.sh
diff options
context:
space:
mode:
authordsomero <xgizzmo@gmail.com>2010-05-21 18:43:00 -0400
committerDavid Somero <xgizzmo@slackbuilds.org>2010-05-24 16:07:25 -0500
commit45e98c1a7cb7df5aea05614650dd7515e36f499e (patch)
treea540963abe71e2916bf51409dd9c4b47fae906e6 /games/sdlmame/doinst.sh
parent25e6c764a2f4d7610af228980372cbc8e6a1d7c1 (diff)
games/sdlmame: Removed (download link broken)
Diffstat (limited to 'games/sdlmame/doinst.sh')
-rw-r--r--games/sdlmame/doinst.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/games/sdlmame/doinst.sh b/games/sdlmame/doinst.sh
deleted file mode 100644
index 787a7d4e51544..0000000000000
--- a/games/sdlmame/doinst.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/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