From a3db61adc264995ceac4a29d807db81c53a3bb95 Mon Sep 17 00:00:00 2001 From: Hunter Sezen Date: Sun, 10 Jan 2016 12:22:41 +0700 Subject: games/nuvie: Added (New Ultima VI Engine). Signed-off-by: Willy Sudiarto Raharjo --- games/nuvie/doinst.sh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 games/nuvie/doinst.sh (limited to 'games/nuvie/doinst.sh') diff --git a/games/nuvie/doinst.sh b/games/nuvie/doinst.sh new file mode 100644 index 0000000000..10df7d698e --- /dev/null +++ b/games/nuvie/doinst.sh @@ -0,0 +1,35 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi + +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms usr/share/nuvie/nuvie.cfg.new -- cgit v1.2.3