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

class HtmlXmlUtils < Formula
  homepage 'http://www.w3.org/Tools/HTML-XML-utils/'
  url 'http://www.w3.org/Tools/HTML-XML-utils/html-xml-utils-6.4.tar.gz'
  sha1 '6dc6ace41a4c3f692f79b16107d50d0e80d0ee40'

  def install
    ENV.append 'CFLAGS', '-std=gnu89'
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make"
    ENV.j1 # install is not thread-safe
    system "make install"
  end
end