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