24 lines
642 B
Ruby
24 lines
642 B
Ruby
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.1.tar.gz'
|
|
sha1 '788f9eef4347e49f7e4880d99ad5d27c1e8776fd'
|
|
|
|
fails_with :clang do
|
|
build 421
|
|
cause <<-EOS.undent
|
|
Undefined symbols for architecture x86_64:
|
|
"_min", referenced from:
|
|
_write_index_item in hxindex.o
|
|
EOS
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make"
|
|
ENV.j1 # install is not thread-safe
|
|
system "make install"
|
|
end
|
|
end
|