summaryrefslogtreecommitdiffstats
path: root/libraries/libvdpau/doinst.sh
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2016-01-02 02:46:09 -0600
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-01-17 09:40:16 +0700
commit238ce60e86e7c9e50b9479af3e5eb2829aee0d37 (patch)
tree3ca369d6568ad4ad98961eaeffdf52cce3a2b020 /libraries/libvdpau/doinst.sh
parentb5a65ce21cafbd7d0389b6d709ca6721fc58d702 (diff)
downloadslackbuilds-238ce60e86e7c9e50b9479af3e5eb2829aee0d37.tar.gz
slackbuilds-238ce60e86e7c9e50b9479af3e5eb2829aee0d37.tar.xz
libraries/libvdpau: Removed (included in Slackware 14.2)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/libvdpau/doinst.sh')
-rw-r--r--libraries/libvdpau/doinst.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/libraries/libvdpau/doinst.sh b/libraries/libvdpau/doinst.sh
deleted file mode 100644
index 15cd7163be..0000000000
--- a/libraries/libvdpau/doinst.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-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/vdpau_wrapper.cfg.new
-