homebrew-core/Formula/monit.rb

19 lines
445 B
Ruby
Raw Normal View History

2014-05-21 06:44:31 +00:00
require "formula"
2009-09-17 13:52:33 +00:00
2011-03-10 05:11:03 +00:00
class Monit < Formula
2014-05-21 06:44:31 +00:00
homepage "http://mmonit.com/monit/"
url "http://mmonit.com/monit/dist/monit-5.8.1.tar.gz"
sha1 "97c67699a4b2ee3b6ab8c51173611408e31173d7"
2009-09-17 13:52:33 +00:00
def install
system "./configure", "--prefix=#{prefix}",
"--localstatedir=#{var}/monit",
"--sysconfdir=#{etc}/monit"
2009-09-17 13:52:33 +00:00
system "make install"
end
test do
system "#{bin}/monit", "-h"
end
2009-09-17 13:52:33 +00:00
end