2010-08-18 11:36:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sshguard < Formula
|
2011-08-07 17:41:04 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sshguard/sshguard/sshguard-1.5/sshguard-1.5.tar.bz2'
|
2010-08-18 11:36:18 +00:00
|
|
|
homepage 'http://www.sshguard.net/'
|
2011-08-07 17:41:04 +00:00
|
|
|
md5 '11b9f47f9051e25bdfe84a365c961ec1'
|
2010-08-18 11:36:18 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-firewall=ipfw"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|