homebrew-core/Formula/cfengine.rb
Diego Zamboni 10f6670cdd cfengine 3.2.0
Cfengine is a configuration-management and automation tool.
This formula uses tokyo-cabinet because cfengine does not compile
cleanly with the Mac OSX-included Berkeley DB.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-09-02 10:01:41 -07:00

19 lines
466 B
Ruby

require 'formula'
class Cfengine < Formula
url 'https://cfengine.com/source_code/download?file=cfengine-3.2.0.tar.gz'
homepage 'http://cfengine.com/'
md5 '5fdd5a0bf6c5111114ee8fb2259483ae'
depends_on 'tokyo-cabinet'
def install
system "./configure", "--with-tokyocabinet", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "/usr/bin/make install"
end
def test
system "#{sbin}/cf-agent -V"
end
end