blob: d18c7d75a5ffdf30a3bf0985959eb638992f492e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
require 'formula'
class Idnits <Formula
  url 'http://tools.ietf.org/tools/idnits/idnits-2.12.05.tgz'
  homepage 'http://tools.ietf.org/tools/idnits/'
  md5 'd2d56588d3202c10757f74770316426c'
  depends_on 'aspell'
  def install
    bin.install "idnits"
    prefix.install %w(about todo)
  end
end
  |