aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2009-09-19 11:42:30 +0200
committerDavid Höppner2009-09-19 11:42:30 +0200
commit4af8c5fdb38b466e979054ec7ff91aca4dc942ef (patch)
treedea8af5e66f49e0150297aac9116b8be6530c634 /Library/Formula
parent031e223db42edc947ef7426dd2261e043651917f (diff)
downloadhomebrew-4af8c5fdb38b466e979054ec7ff91aca4dc942ef.tar.bz2
Xerces-C++ formula
Xerces-C++ is a validating XML parser written in a portable subset of C++. Xerces-C++ makes it easy to give your application the ability to read and write XML data.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xerces-c.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/xerces-c.rb b/Library/Formula/xerces-c.rb
new file mode 100644
index 000000000..df647bc47
--- /dev/null
+++ b/Library/Formula/xerces-c.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class XercesC <Formula
+ @url='http://www.osnt.org/apache/xerces/c/3/sources/xerces-c-3.0.1.tar.gz'
+ @homepage='http://xerces.apache.org/xerces-c/'
+ @md5='293c03f59bf8e956020d73f5b122094c'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end