diff options
author | Hunter Sezen <ovariegata@yahoo.com> | 2016-08-01 12:11:04 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-08-05 18:10:41 +0100 |
commit | c4e3e812928a2f50ba0cac8dfb48364a007f2906 (patch) | |
tree | 4de5be83a6e31201c4a50d43185d0f1b07b001af /games/RetroArch/doinst.sh | |
parent | e94a3d1fa66463c0b27413f5acc5ee5690d8d638 (diff) |
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.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/games/RetroArch/doinst.sh b/games/RetroArch/doinst.sh new file mode 100644 index 000000000000..2c1d79af8a1c --- /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 |