diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-08-27 00:51:37 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-08-27 00:51:37 +0200 |
commit | cd2ce3ebe33f7f60066c8a489f7736e273fd0636 (patch) | |
tree | 4a3e8bea35fc6f19b8967ba7b1cf9cf150bae547 /perl-file-tail/watch | |
parent | update dooble (diff) | |
download | aur-packages-cd2ce3ebe33f7f60066c8a489f7736e273fd0636.tar.gz aur-packages-cd2ce3ebe33f7f60066c8a489f7736e273fd0636.tar.bz2 aur-packages-cd2ce3ebe33f7f60066c8a489f7736e273fd0636.tar.xz |
perl-file-tail has been moved into community
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'perl-file-tail/watch')
-rwxr-xr-x | perl-file-tail/watch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/perl-file-tail/watch b/perl-file-tail/watch deleted file mode 100755 index 2f81b76..0000000 --- a/perl-file-tail/watch +++ /dev/null @@ -1,21 +0,0 @@ -#!/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 - |