2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-17 13:52:33 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Monit < Formula
|
2009-09-17 13:52:33 +00:00
|
|
|
homepage 'http://mmonit.com/monit/'
|
2012-08-02 02:38:02 +00:00
|
|
|
url 'http://mmonit.com/monit/dist/monit-5.4.tar.gz'
|
|
|
|
sha256 '805c6545de2dd7f3d9e6e0c68018b2aadd5fc98b243c8868178f247a60906038'
|
2009-09-17 13:52:33 +00:00
|
|
|
|
|
|
|
def install
|
2010-10-22 19:52:06 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--localstatedir=#{var}/monit",
|
|
|
|
"--sysconfdir=#{etc}/monit"
|
2009-09-17 13:52:33 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-11-18 04:21:11 +00:00
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/monit", "-h"
|
2011-11-18 04:21:11 +00:00
|
|
|
end
|
2009-09-17 13:52:33 +00:00
|
|
|
end
|