41fa0dfd09
Closes #19605. Signed-off-by: William Woodruff <william@tuffbizz.com>
26 lines
713 B
Ruby
26 lines
713 B
Ruby
class Idnits < Formula
|
|
desc "Looks for problems in internet draft formatting"
|
|
homepage "https://tools.ietf.org/tools/idnits/"
|
|
url "https://tools.ietf.org/tools/idnits/idnits-2.15.00.tgz"
|
|
sha256 "f655d06e7d3b1c35d7ca55f91243115359ae4fdd17553ea58a301091a07ed7ac"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "aspell" => :optional
|
|
depends_on "languagetool" => :optional
|
|
|
|
resource "test" do
|
|
url "https://tools.ietf.org/id/draft-ietf-tcpm-undeployed-03.txt"
|
|
sha256 "34e72c2c089409dc1935e18f75351025af3cfc253dee50db042d188b46733550"
|
|
end
|
|
|
|
def install
|
|
bin.install "idnits"
|
|
end
|
|
|
|
test do
|
|
resource("test").stage do
|
|
system "#{bin}/idnits", "draft-ietf-tcpm-undeployed-03.txt"
|
|
end
|
|
end
|
|
end
|