blob: b15bdf623e61bc1aa7d8b48d5f89976ab2b5de04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Monit < Formula
homepage 'http://mmonit.com/monit/'
url 'http://mmonit.com/monit/dist/monit-5.8.tar.gz'
sha256 '0c00573ebc0156c534a5952f392c2a7bedde194f8261c05497322055938847f5'
def install
system "./configure", "--prefix=#{prefix}",
"--localstatedir=#{var}/monit",
"--sysconfdir=#{etc}/monit"
system "make install"
end
test do
system "#{bin}/monit", "-h"
end
end
|