29b31824d8
Closes Homebrew/homebrew#9669. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
14 lines
354 B
Ruby
14 lines
354 B
Ruby
require 'formula'
|
|
|
|
class P0f < Formula
|
|
url 'http://lcamtuf.coredump.cx/p0f3/releases/p0f-3.02b.tgz'
|
|
homepage 'http://lcamtuf.coredump.cx/p0f3/'
|
|
md5 '062ac4c410f7ec49434872efe322c880'
|
|
|
|
def install
|
|
inreplace "config.h", "p0f.fp", "#{etc}/p0f/p0f.fp"
|
|
system "./build.sh"
|
|
sbin.install ["p0f"]
|
|
(etc+"p0f").install ['p0f.fp']
|
|
end
|
|
end
|