diff options
| author | William Melody | 2010-01-22 17:05:27 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-11 10:14:26 -0800 |
| commit | 412c0fb8c7216d8b040179009dff3c7488dd1fc5 (patch) | |
| tree | 8feb78e56589d10f8e51aba4b067833da241e6e2 /Library | |
| parent | 05546887cf00603c12fe0de1e2f293333726bd98 (diff) | |
| download | homebrew-412c0fb8c7216d8b040179009dff3c7488dd1fc5.tar.bz2 | |
HTMLDOC 1.8.27
HTMLDOC converts Hyper-Text Markup Language
("HTML") files and web pages into indexed HTML,
Adobe® PostScript®, or Adobe Portable Document
Format ("PDF") files.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/htmldoc.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/htmldoc.rb b/Library/Formula/htmldoc.rb new file mode 100644 index 000000000..ff0565b02 --- /dev/null +++ b/Library/Formula/htmldoc.rb @@ -0,0 +1,12 @@ +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", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
