slackbuilds_ponce/libraries/libvdpau-va-gl/doinst.sh
Marcel Saegebarth fad01b4d2e libraries/libvdpau-va-gl: Added (VDPAU driver with VA-API/OpenGL).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2015-03-07 07:05:19 +07:00

15 lines
429 B
Bash

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/profile.d/vdpau-va-gl.sh.new
config etc/profile.d/vdpau-va-gl.csh.new