blob: 2f80c9a644a8a6c3c6cc4c2ba7c1a8dbd8c8002c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | class Log4c < Formula
  homepage 'http://log4c.sourceforge.net/'
  url 'https://downloads.sourceforge.net/project/log4c/log4c/1.2.4/log4c-1.2.4.tar.gz'
  sha1 'a2795d7fcbdf5e43e1cc644893adfa725046abe8'
  head ":pserver:anonymous:@log4c.cvs.sourceforge.net:/cvsroot/log4c", :using => :cvs
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
  test do
    system "#{bin}/log4c-config", "--version"
  end
end
 |