argus-clients 3.0.6.2

Closes Homebrew/homebrew#21868.

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

21
Formula/argus-clients.rb Normal file
View File

@ -0,0 +1,21 @@
require 'formula'
class ArgusClients < Formula
homepage 'http://qosient.com/argus/'
url 'http://qosient.com/argus/src/argus-clients-3.0.6.2.tar.gz'
sha1 '27a265e7c3cf6f11f992c14698ee50123a01091f'
depends_on 'readline' => :recommended
depends_on 'rrdtool' => :recommended
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