aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Höppner2010-04-20 19:45:36 +0200
committerDavid Höppner2010-04-20 19:50:23 +0200
commite7dbaf284101ecd9c9b00afbd11abe4ebd2944e6 (patch)
treecaf8c4327d165e671a52d32a6ba46ec155847f94 /Library
parent1602d1c80d2a6d8d0cb05009b1d284a45ad6df57 (diff)
downloadhomebrew-e7dbaf284101ecd9c9b00afbd11abe4ebd2944e6.tar.bz2
New formula htmlcxx
htmlcxx is a simple non-validating css1 and html parser for C++.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/htmlcxx.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/htmlcxx.rb b/Library/Formula/htmlcxx.rb
new file mode 100644
index 000000000..1dc36fbe2
--- /dev/null
+++ b/Library/Formula/htmlcxx.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Htmlcxx <Formula
+ url 'http://downloads.sourceforge.net/project/htmlcxx/htmlcxx/0.84/htmlcxx-0.84.tar.gz'
+ homepage 'http://htmlcxx.sourceforge.net/'
+ md5 'd2e0e6f4c509ef1809d90dd21c3ba3e8'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end