aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/htmldoc.rb
blob: be13cbeb46366ac62d5cb70e5ba6eeb65fdb737b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
  sha1 '472908e0aafed1cedfbacd8ed3168734aebdec4b'

  def install
    ENV.append_to_cflags "-I#{HOMEBREW_PREFIX}/include"

    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make"
    system "make install"
  end
end