aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/htmldoc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/htmldoc.rb')
-rw-r--r--Library/Formula/htmldoc.rb12
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