aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/htmldoc.rb
blob: cf395b1d3006876494d3f9a035cde58cc2be9de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Htmldoc <Formula
  url 'http://ftp.easysw.com/pub/htmldoc/1.8.27/htmldoc-1.8.27-source.tar.bz2'
  homepage 'http://www.htmldoc.org'
  md5 '35589e7b8fe9c54e11be87cd5aec4dcc'
  
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end