aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorClinton R. Nixon2009-09-17 09:52:33 -0400
committerMax Howell2009-09-30 01:24:36 +0100
commit7386035bbde672d15ab739cfc5e633f1c33d8b58 (patch)
tree7fea3c1d2fbcf9827eb3feb3604e0a8a4581163f /Library/Formula
parent3651f6b5cb24bffecd6b1a54f542b5640eb6e264 (diff)
downloadhomebrew-7386035bbde672d15ab739cfc5e633f1c33d8b58.tar.bz2
Monit formula
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/monit.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/monit.rb b/Library/Formula/monit.rb
new file mode 100644
index 000000000..3ea1e4fb5
--- /dev/null
+++ b/Library/Formula/monit.rb
@@ -0,0 +1,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