blob: b3b98c7e79f1323b9e425ad7b46bfebc03539177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Monit <Formula
url 'http://mmonit.com/monit/dist/monit-5.0.3.tar.gz'
homepage 'http://mmonit.com/monit/'
md5 'dae7859ec10551fc941daeae60dee9d3'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|