aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/html-xml-utils.rb
blob: a34b5f531d53532cfc1be3e729cae2045a4bcf40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class HtmlXmlUtils <Formula
  url 'http://www.w3.org/Tools/HTML-XML-utils/html-xml-utils-5.5.tar.gz'
  homepage 'http://www.w3.org/Tools/HTML-XML-utils/'
  md5 '28c58add86e35a60e602a029c8e2f04b'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end