diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:41 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:41 +0200 |
commit | 884e8a19ff309fe8ccf1f7914909ba80a0e65202 (patch) | |
tree | f7e92a9f69a56d2877249e97fe69b9c7e834280b /multimedia/mplayer/doinst.sh | |
parent | 61c96b150ad2872fa57da35e5c232d48eecfb706 (diff) |
multimedia/mplayer: Renamed from MPlayer
Diffstat (limited to 'multimedia/mplayer/doinst.sh')
-rw-r--r-- | multimedia/mplayer/doinst.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/multimedia/mplayer/doinst.sh b/multimedia/mplayer/doinst.sh new file mode 100644 index 0000000000000..7896df199e1dc --- /dev/null +++ b/multimedia/mplayer/doinst.sh @@ -0,0 +1,19 @@ +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/mplayer/mplayer.conf.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications +fi + |