homebrew-core/Formula/argus.rb
Charles H. Leggett a19981ff58 argus 3.0.6.1
Closes Homebrew/homebrew#21867.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-14 13:56:08 -07:00

18 lines
402 B
Ruby

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