aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/monit.rb
blob: 3ea1e4fb5c300d4b650e88e20520c55b88c6d21f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'brewkit'

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