SEC 2.6.2

SEC is a tool for accomplishing event correlation tasks in the domains of
log analysis, system monitoring, network and security management, etc.

Closes Homebrew/homebrew#11892.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Marica Odagaki 2012-04-26 15:35:17 +09:00 committed by Adam Vandenberg
parent dd46a9f354
commit 82324e9d77

16
Formula/sec.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Sec < Formula
homepage 'http://simple-evcorr.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/simple-evcorr/sec/2.6.2/sec-2.6.2.tar.gz'
sha1 'bce0717c59ef1310fcad14ee1f90f4c05f89c4c0'
def install
bin.install 'sec'
man1.install 'sec.man' => 'sec.1'
end
def test
system "#{bin}/sec --version"
end
end