88779ade49
Closes Homebrew/homebrew#14653.
12 lines
289 B
Ruby
12 lines
289 B
Ruby
require 'formula'
|
|
|
|
class Linklint < Formula
|
|
url 'http://linklint.org/download/linklint-2.3.5.tar.gz'
|
|
homepage 'http://linklint.org'
|
|
sha1 'd2dd384054b39a09c17b69e617f7393e44e98376'
|
|
|
|
def install
|
|
mv 'READ_ME.txt', 'README'
|
|
bin.install 'linklint-2.3.5' => 'linklint'
|
|
end
|
|
end
|