aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sshguard.rb
diff options
context:
space:
mode:
authorLuke Gallagher2010-08-18 21:36:18 +1000
committerAdam Vandenberg2010-08-18 09:32:03 -0700
commit08bd8c91097d91f2128688a22f5488657259c053 (patch)
tree4aff40fba893a3a971d68656797daca4087d5f7b /Library/Formula/sshguard.rb
parent8311a4de541d88217242b4939082f519e7bdb70b (diff)
downloadhomebrew-08bd8c91097d91f2128688a22f5488657259c053.tar.bz2
Add sshguard 1.5rc4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/sshguard.rb')
-rw-r--r--Library/Formula/sshguard.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/sshguard.rb b/Library/Formula/sshguard.rb
new file mode 100644
index 000000000..30438092b
--- /dev/null
+++ b/Library/Formula/sshguard.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Sshguard <Formula
+ url 'http://downloads.sourceforge.net/project/sshguard/sshguard/sshguard-1.5rc4/sshguard-1.5rc4.tar.bz2'
+ homepage 'http://www.sshguard.net/'
+ md5 'b25da46b0254879609faa9841a145eba'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--with-firewall=ipfw"
+ system "make install"
+ end
+end