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
|
2011-06-11 16:48:18 +00:00
|
|
|
url 'http://mmonit.com/monit/dist/monit-5.2.5.tar.gz'
|
2009-09-17 13:52:33 +00:00
|
|
|
homepage 'http://mmonit.com/monit/'
|
2011-06-11 16:48:18 +00:00
|
|
|
sha256 '3c2496e9f653ff8a46b75b61126a86cb3861ad35e4eeb7379d64a0fc55c1fd8d'
|
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
|
|
|
|
end
|