homebrew-core/Formula/htmldoc.rb

17 lines
478 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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"
2010-02-11 18:17:48 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make"
system "make install"
end
end