added a formula for linklint

linklint is a link checking spider

Signed-off-by: Max Howell <max@methylblue.com>

I amended it somewhat heavily to only install what was needed.
master
Caleb Land 2009-10-27 13:49:38 -04:00 committed by Max Howell
parent ed7aae5908
commit b399ca5454
1 changed files with 14 additions and 0 deletions

14
Formula/linklint.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Linklint <Formula
url 'http://linklint.org/download/linklint-2.3.5.tar.gz'
homepage 'http://linklint.org'
md5 'c1ae0860199da59ded28771d1fa7b800'
def install
FileUtils.mv 'READ_ME.txt', 'README'
bin.install 'linklint-2.3.5'
Dir.chdir bin
FileUtils.mv 'linklint-2.3.5', 'linklint'
end
end