diff options
| author | Alex | 2011-04-21 22:18:14 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-25 10:40:41 -0700 |
| commit | 1394baf5a154e21d4008d62ee6b2f061dd60ae41 (patch) | |
| tree | 34ba79e22ab879a34178fb898c6ac435553b5bd6 | |
| parent | 5826c7418347546eda98926e03ff55140c994689 (diff) | |
| download | homebrew-1394baf5a154e21d4008d62ee6b2f061dd60ae41.tar.bz2 | |
log4cplus 1.0.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/log4cplus.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/log4cplus.rb b/Library/Formula/log4cplus.rb new file mode 100644 index 000000000..e4ad95094 --- /dev/null +++ b/Library/Formula/log4cplus.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Log4cplus < Formula + url 'http://sourceforge.net/projects/log4cplus/files/log4cplus-stable/1.0.4/log4cplus-1.0.4.tar.bz2' + homepage 'http://log4cplus.sourceforge.net/' + md5 '977d0a390b3be1a4ad8cfab2e4dd3af3' + + def install + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
