diff options
author | Hunter Sezen <ovariegata@yahoo.com> | 2016-01-10 12:22:41 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-10 12:22:41 +0700 |
commit | a3db61adc264995ceac4a29d807db81c53a3bb95 (patch) | |
tree | 99c827e6dc577fc20e7b98c6e66246f2c5b930fa /games/nuvie/doinst.sh | |
parent | 0c3cbf9371756f16da56386f0fd49a14ddf331ee (diff) | |
download | slackbuilds-a3db61adc264995ceac4a29d807db81c53a3bb95.tar.gz |
games/nuvie: Added (New Ultima VI Engine).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/nuvie/doinst.sh')
-rw-r--r-- | games/nuvie/doinst.sh | 35 |
1 files changed, 35 insertions, 0 deletions
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 |