77c73ecb89
Some of these were pointing at archive.apache.org. Now they aren’t, I investigated for good rationale for using the archive before altering it. mod_python still uses archive.apache.org as that is the only place it exists that I could find. jsvc *now* uses apache.archive.org as the formula was otherwise broken and the binary tarball it needs no longer exists on the main mirrors.
17 lines
619 B
Ruby
17 lines
619 B
Ruby
require 'formula'
|
|
|
|
class Log4cxx < Formula
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=logging/log4cxx/0.10.0/apache-log4cxx-0.10.0.tar.gz'
|
|
homepage 'http://logging.apache.org/log4cxx/index.html'
|
|
md5 'b30ffb8da3665178e68940ff7a61084c'
|
|
|
|
fails_with_llvm "Fails with \"collect2: ld terminated with signal 11 [Segmentation fault]\"."
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
# Docs won't install on OS X
|
|
"--disable-doxygen"
|
|
system "make install"
|
|
end
|
|
end
|