diff options
author | John Vogel <jvogel4@stny.rr.com> | 2014-11-04 22:29:44 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-11-08 06:30:07 +0700 |
commit | 25c648458dbfdcef851d169f17110f5b0f26aff9 (patch) | |
tree | 5310b30e39798388071e8907747ee1d04bb9eba3 /multimedia/mpv/doinst.sh | |
parent | d258335d875ebc9a81c080df2df4290c67895286 (diff) |
multimedia/mpv: Added (MPlayer fork).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'multimedia/mpv/doinst.sh')
-rw-r--r-- | multimedia/mpv/doinst.sh | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/multimedia/mpv/doinst.sh b/multimedia/mpv/doinst.sh new file mode 100644 index 0000000000000..893bd911b3e92 --- /dev/null +++ b/multimedia/mpv/doinst.sh @@ -0,0 +1,37 @@ +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 +} + +for f in etc/mpv/*.conf.new ; do + preserve_perms $f +done + +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 |