b399ca5454
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.
14 lines
339 B
Ruby
14 lines
339 B
Ruby
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
|