homebrew-core/Formula/log4cpp.rb
Jaime Marquínez Ferrándiz b7678ae561 Change some SourceForge urls to use https://downloads.sourceforge.net
Closes Homebrew/homebrew#27041.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

13 lines
431 B
Ruby

require 'formula'
class Log4cpp < Formula
homepage 'http://log4cpp.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/log4cpp/log4cpp-1.1.x%20%28new%29/log4cpp-1.1/log4cpp-1.1.1.tar.gz'
sha1 '23aa5bd7d6f79992c92bad3e1c6d64a34f8fcf68'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end