summaryrefslogtreecommitdiffstats
path: root/games/RetroArch/doinst.sh
diff options
context:
space:
mode:
author Hunter Sezen2016-08-01 13:11:04 +0200
committer David Spencer2016-08-05 19:10:41 +0200
commitc4e3e812928a2f50ba0cac8dfb48364a007f2906 (patch)
tree4de5be83a6e31201c4a50d43185d0f1b07b001af /games/RetroArch/doinst.sh
parente94a3d1fa66463c0b27413f5acc5ee5690d8d638 (diff)
downloadslackbuilds-c4e3e812928a2f50ba0cac8dfb48364a007f2906.tar.gz
games/RetroArch: Added (Reference frontend for the libretro API).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games/RetroArch/doinst.sh')
-rw-r--r--games/RetroArch/doinst.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/games/RetroArch/doinst.sh b/games/RetroArch/doinst.sh
new file mode 100644
index 0000000000..2c1d79af8a
--- /dev/null
+++ b/games/RetroArch/doinst.sh
@@ -0,0 +1,18 @@
+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/retroarch.cfg.new
+
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+fi