blob: 025a7e6e655f53b559cc87762c24c9733225d849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|