blob: bf31cdb064a1d77f8355391fdd3f9296e96912b4 (
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.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
  |