homebrew-core/Formula/monit.rb

13 lines
325 B
Ruby
Raw Normal View History

require 'formula'
2009-09-17 13:52:33 +00:00
class Monit <Formula
2010-04-12 18:48:07 +00:00
url 'http://mmonit.com/monit/dist/monit-5.1.1.tar.gz'
2009-09-17 13:52:33 +00:00
homepage 'http://mmonit.com/monit/'
2010-04-12 18:48:07 +00:00
md5 '4bbd3845ae1cbab13ec211824e0486dc'
2009-09-17 13:52:33 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end