summaryrefslogtreecommitdiffstats
path: root/audio/pulseaudio/doinst.sh
diff options
context:
space:
mode:
author crocket2011-07-19 09:17:51 +0200
committer Robby Workman2011-07-22 05:52:46 +0200
commitdf3d230047a608ca757c3cf2b07e5239fd22cbae (patch)
tree83679349d9fd4cd6dccd518f0c51fcae6ae12ff7 /audio/pulseaudio/doinst.sh
parent847dc4d53874fefa4e0861a11d1ec0c9a9d7244f (diff)
downloadslackbuilds-df3d230047a608ca757c3cf2b07e5239fd22cbae.tar.gz
audio/pulseaudio: Added (Pulse Audio Sound Server)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'audio/pulseaudio/doinst.sh')
-rw-r--r--audio/pulseaudio/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/audio/pulseaudio/doinst.sh b/audio/pulseaudio/doinst.sh
new file mode 100644
index 0000000000..8fa296faf5
--- /dev/null
+++ b/audio/pulseaudio/doinst.sh
@@ -0,0 +1,16 @@
+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/pulse/client.conf.new
+config etc/pulse/default.pa.new
+config etc/pulse/daemon.conf.new