From 608ee7d87a8a634cdbf8dfd88e31e681368bfd7e Mon Sep 17 00:00:00 2001 From: Grigorios Bouzakis Date: Tue, 1 Mar 2011 20:56:00 -0300 Subject: multimedia/ripit: Added (command line audio CD ripper) Signed-off-by: Niels Horn --- multimedia/ripit/doinst.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 multimedia/ripit/doinst.sh (limited to 'multimedia/ripit/doinst.sh') diff --git a/multimedia/ripit/doinst.sh b/multimedia/ripit/doinst.sh new file mode 100644 index 0000000000..63523ebd11 --- /dev/null +++ b/multimedia/ripit/doinst.sh @@ -0,0 +1,15 @@ +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/ripit/config.new + -- cgit v1.2.3