homebrew-core/Formula/htmlcxx.rb
Brett Koonce 1447a30091 htmlcxx 0.85
Closes Homebrew/homebrew#13948.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-04 09:04:15 -07:00

12 lines
378 B
Ruby

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