aboutsummaryrefslogtreecommitdiff
path: root/games/sdlmess/doinst.sh
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2012-09-20 23:29:43 -0500
committerRobby Workman <rworkman@slackbuilds.org>2012-09-22 11:40:54 -0500
commit89b55d2caf4d0db3d509b93832a0a7ffd03d24af (patch)
tree783929c5d2b41ee9ded76d12ed2a65f89787703f /games/sdlmess/doinst.sh
parenta7fdde462fe19ec70827e11fdb3b5c7355ef5a6d (diff)
games/sdlmess: Removed (outdated and unmaintained)
I'll submit a mess.SlackBuild after submissions are open again. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'games/sdlmess/doinst.sh')
-rw-r--r--games/sdlmess/doinst.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/games/sdlmess/doinst.sh b/games/sdlmess/doinst.sh
deleted file mode 100644
index 87f327952b..0000000000
--- a/games/sdlmess/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/mess.ini.new
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications
-fi