aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLuke Gallagher2011-11-18 15:21:11 +1100
committerAdam Vandenberg2011-11-17 21:53:44 -0800
commit960f56a9dd03b45a14d26b834889b11cf4313d09 (patch)
tree7d20518a44854a6bbe1d60feb3f35e2b6b7b29b3 /Library/Formula
parente93e65e1445d821d35a0466e51c220d97cc3a404 (diff)
downloadhomebrew-960f56a9dd03b45a14d26b834889b11cf4313d09.tar.bz2
monit 5.3.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/monit.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Formula/monit.rb b/Library/Formula/monit.rb
index 4d84f3126..9d6928e16 100644
--- a/Library/Formula/monit.rb
+++ b/Library/Formula/monit.rb
@@ -1,9 +1,9 @@
require 'formula'
class Monit < Formula
- url 'http://mmonit.com/monit/dist/monit-5.2.5.tar.gz'
+ url 'http://mmonit.com/monit/dist/monit-5.3.1.tar.gz'
homepage 'http://mmonit.com/monit/'
- sha256 '3c2496e9f653ff8a46b75b61126a86cb3861ad35e4eeb7379d64a0fc55c1fd8d'
+ sha256 '91a3f15c11a9b9e60e6e3b963f9f4af2acf5ca50ac6dc047d94ce50e966addc6'
def install
system "./configure", "--prefix=#{prefix}",
@@ -11,4 +11,8 @@ class Monit < Formula
"--sysconfdir=#{etc}/monit"
system "make install"
end
+
+ def test
+ system "monit -h"
+ end
end