diff options
author | dsomero <xgizzmo@gmail.com> | 2010-05-21 18:43:00 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-24 16:07:25 -0500 |
commit | 45e98c1a7cb7df5aea05614650dd7515e36f499e (patch) | |
tree | a540963abe71e2916bf51409dd9c4b47fae906e6 /games/sdlmame/doinst.sh | |
parent | 25e6c764a2f4d7610af228980372cbc8e6a1d7c1 (diff) |
games/sdlmame: Removed (download link broken)
Diffstat (limited to 'games/sdlmame/doinst.sh')
-rw-r--r-- | games/sdlmame/doinst.sh | 20 |
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 |