From 4a457f5943064c7bae5d70ec8d4df715b27c50cb Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 5 Mar 2013 07:17:37 +0100 Subject: adopt perl-file-tail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- perl-file-tail/watch | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 perl-file-tail/watch (limited to 'perl-file-tail/watch') diff --git a/perl-file-tail/watch b/perl-file-tail/watch new file mode 100755 index 0000000..2f81b76 --- /dev/null +++ b/perl-file-tail/watch @@ -0,0 +1,21 @@ +#!/bin/sh + +[ -f file-tail ] && rm file-tail + +wget 'http://search.cpan.org/~mgrabnar/File-Tail-0.99.3/Tail.pm' -O file-tail >/dev/null 2>/dev/null + +if [ $? = 0 ]; then + [ -f unfetchable ] && rm unfetchable + grep 'Module Version:' < file-tail | md5sum > new-sum + touch sum + if [ "$(cat sum)" = "$(cat new-sum)" ]; then + rm new-sum + else + mv new-sum sum + echo 'perl-file-tail' + fi +elif [ ! -f unfetchable ]; then + touch unfetchable + echo 'perl-file-tail (unfetchable)' +fi + -- cgit v1.2.3-70-g09d2