aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/htmlcxx.rb
blob: 88531b13a591cadee189e2e025d602006a61b4c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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