diff options
| author | Marica Odagaki | 2012-04-26 15:35:17 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-29 09:07:53 -0700 |
| commit | bf44a4ff724fa540b3c126d823447d5650154380 (patch) | |
| tree | 0c5b717db80c41104f198c06cb8f845ffccd2347 /Library/Formula/sec.rb | |
| parent | c238de8f0cff4a1a5225355d9a6ef5aed5bba11e (diff) | |
| download | homebrew-bf44a4ff724fa540b3c126d823447d5650154380.tar.bz2 | |
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 #11892.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/sec.rb')
| -rw-r--r-- | Library/Formula/sec.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/sec.rb b/Library/Formula/sec.rb new file mode 100644 index 000000000..e64409b58 --- /dev/null +++ b/Library/Formula/sec.rb @@ -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 |
