2010-03-09 16:04:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class P0f < Formula
|
2012-01-10 17:25:43 +00:00
|
|
|
homepage 'http://lcamtuf.coredump.cx/p0f3/'
|
2012-07-20 17:22:27 +00:00
|
|
|
url 'http://lcamtuf.coredump.cx/p0f3/releases/p0f-3.05b.tgz'
|
|
|
|
sha1 'e6f39c3811e681272e772f33588aa46b75975708'
|
2010-03-09 16:04:29 +00:00
|
|
|
|
|
|
|
def install
|
2012-01-10 17:25:43 +00:00
|
|
|
inreplace "config.h", "p0f.fp", "#{etc}/p0f/p0f.fp"
|
|
|
|
system "./build.sh"
|
2012-02-11 04:47:40 +00:00
|
|
|
sbin.install "p0f"
|
|
|
|
(etc+"p0f").install "p0f.fp"
|
2010-03-09 16:04:29 +00:00
|
|
|
end
|
|
|
|
end
|