homebrew-core/Formula/htmlcxx.rb
David Höppner e396506ed8 New formula htmlcxx
htmlcxx is a simple non-validating css1 and html parser for C++.
2010-04-20 19:50:23 +02:00

12 lines
368 B
Ruby

require 'formula'
class Htmlcxx <Formula
url 'http://downloads.sourceforge.net/project/htmlcxx/htmlcxx/0.84/htmlcxx-0.84.tar.gz'
homepage 'http://htmlcxx.sourceforge.net/'
md5 'd2e0e6f4c509ef1809d90dd21c3ba3e8'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end