blob: 1b34735dc9c54949c1a17a73dacf1007f73bbc51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Sshguard < Formula
url 'http://downloads.sourceforge.net/project/sshguard/sshguard/sshguard-1.5/sshguard-1.5.tar.bz2'
homepage 'http://www.sshguard.net/'
md5 '11b9f47f9051e25bdfe84a365c961ec1'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-firewall=ipfw"
system "make install"
end
end
|