diff options
| author | David Höppner | 2010-02-13 19:11:29 +0100 | 
|---|---|---|
| committer | David Höppner | 2010-02-13 19:11:29 +0100 | 
| commit | 23ee0021753d36a7291d53ef37aad3cc67d0e70b (patch) | |
| tree | 7a38e4c47e05ff4098e72cfd681ac07ee270c145 /Library/Formula/log4cpp.rb | |
| parent | c9ed7380e8e6f3d50490a6eca1b407c5fca586be (diff) | |
| download | homebrew-23ee0021753d36a7291d53ef37aad3cc67d0e70b.tar.bz2 | |
New formula log4cpp
Log4cpp is library of C++ classes for flexible logging to
files, syslog, IDSA and other destinations.
Diffstat (limited to 'Library/Formula/log4cpp.rb')
| -rw-r--r-- | Library/Formula/log4cpp.rb | 12 | 
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/log4cpp.rb b/Library/Formula/log4cpp.rb new file mode 100644 index 000000000..1c363608f --- /dev/null +++ b/Library/Formula/log4cpp.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Log4cpp <Formula +  url 'http://downloads.sourceforge.net/project/log4cpp/log4cpp-1.0.x%20%28current%29/log4cpp-1.0/log4cpp-1.0.tar.gz' +  homepage 'http://log4cpp.sourceforge.net/' +  md5 '1face50ead0790d1297dfb04bacf273c' + +  def install +    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" +    system "make install" +  end +end  | 
