3afc06a2d3
Closes Homebrew/homebrew#19448. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
305 B
Ruby
14 lines
305 B
Ruby
require 'formula'
|
|
|
|
class Idnits < Formula
|
|
homepage 'http://tools.ietf.org/tools/idnits/'
|
|
url 'http://tools.ietf.org/tools/idnits/idnits-2.12.16.tgz'
|
|
sha1 '3452f00ec6f605d04fdbf19c485e6e081457ef76'
|
|
|
|
depends_on 'aspell'
|
|
|
|
def install
|
|
bin.install "idnits"
|
|
prefix.install_metafiles
|
|
end
|
|
end
|