argus 3.0.6.1

Closes Homebrew/homebrew#21867.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Charles H. Leggett 2013-08-13 07:29:36 -04:00 committed by Adam Vandenberg
parent 67e3222d15
commit a19981ff58
1 changed files with 18 additions and 0 deletions

18
Formula/argus.rb Normal file
View File

@ -0,0 +1,18 @@
require 'formula'
class Argus < Formula
homepage 'http://qosient.com/argus/'
url 'http://qosient.com/argus/src/argus-3.0.6.1.tar.gz'
sha1 '0da193957510fbe1b72875d4ea205453cb7821be'
fails_with :clang do
build 425
cause "Undefined symbols for architecture x86_64"
end
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end