homebrew-core/Formula/htmlcxx.rb

22 lines
830 B
Ruby

class Htmlcxx < Formula
desc "Non-validating CSS1 and HTML parser for C++"
homepage "http://htmlcxx.sourceforge.net/"
url "https://downloads.sourceforge.net/project/htmlcxx/htmlcxx/0.86/htmlcxx-0.86.tar.gz"
sha256 "07542b5ea2442143b125ba213b6823ff4a23fff352ecdd84bbebe1d154f4f5c1"
bottle do
sha256 "2be957cd2a735529bc4e921733cdee1b7a7afdfc6614914c76e9fcd08a89c90e" => :el_capitan
sha256 "b456c9087eb6dc788ec52717cb7eef3bf6dac24dbdd0d46674ed30c8597398ef" => :yosemite
sha256 "86839a9ca4861d4409d7a71b6553d3cbff78d5f99bf2a72971c302891245ed64" => :mavericks
end
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "install"
end
test do
assert_equal version.to_s, shell_output("#{bin}/htmlcxx -V 2>&1").chomp
end
end