2010-03-09 16:04:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
# Official site is no longer responding; use
|
|
|
|
# this GitHub mirror for now.
|
2011-03-10 05:11:03 +00:00
|
|
|
class P0f < Formula
|
2010-11-10 18:16:28 +00:00
|
|
|
url 'https://github.com/downloads/skord/p0f/p0f-2.0.8.tgz'
|
|
|
|
homepage 'https://github.com/skord/p0f'
|
2010-03-09 16:04:29 +00:00
|
|
|
md5 '1ccbcd8d4c95ef6dae841120d23c56a5'
|
|
|
|
|
|
|
|
def install
|
|
|
|
inreplace "config.h", "/etc/p0f", "#{etc}/p0f"
|
|
|
|
system "make"
|
|
|
|
sbin.install ["p0frep", "p0f"]
|
|
|
|
(etc+"p0f").install Dir['*.fp']
|
|
|
|
man1.install gzip("p0f.1")
|
|
|
|
end
|
|
|
|
end
|