aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/p0f.rb
blob: 846c6a8ccd0f05cb844c01502da3eaf0dd050f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class P0f < Formula
  homepage 'http://lcamtuf.coredump.cx/p0f3/'
  url 'http://lcamtuf.coredump.cx/p0f3/releases/p0f-3.06b.tgz'
  sha1 'fecc9ed8b79dbf8e4d5ffbd22eda9d850b42c3c3'

  def install
    inreplace "config.h", "p0f.fp", "#{etc}/p0f/p0f.fp"
    system "./build.sh"
    sbin.install "p0f"
    (etc+"p0f").install "p0f.fp"
  end
end