aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMartin Linkhorst2010-10-18 16:41:05 +0200
committerAdam Vandenberg2010-10-25 21:40:09 -0700
commita2d245b68b15f47427d17fe465b3b2e66ee5d0bd (patch)
treec3d98869d6d942e2750b15306bbb05bf194365b7 /Library
parent025e634ae208956ffe27ff4a71baf10db780838d (diff)
downloadhomebrew-a2d245b68b15f47427d17fe465b3b2e66ee5d0bd.tar.bz2
added formula for log4cxx
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/log4cxx.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/log4cxx.rb b/Library/Formula/log4cxx.rb
new file mode 100644
index 000000000..c358c00c4
--- /dev/null
+++ b/Library/Formula/log4cxx.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Log4cxx < Formula
+ url 'http://apache.abdaal.com/logging/log4cxx/0.10.0/apache-log4cxx-0.10.0.tar.gz'
+ homepage 'http://logging.apache.org/log4cxx/index.html'
+ md5 'b30ffb8da3665178e68940ff7a61084c'
+
+ def install
+ fails_with_llvm "Fails with \"collect2: ld terminated with signal 11 [Segmentation fault]\"."
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end