aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCharles H. Leggett2013-08-13 07:36:23 -0400
committerAdam Vandenberg2013-09-14 13:54:50 -0700
commitbc383d7e98a65a5fb81ca4d71cf7f074d4e8638e (patch)
tree98712091728f21d984f84780a52d252aea19201c /Library/Formula
parentad4208e7ca022068792c727aa5d03229bfbebdd6 (diff)
downloadhomebrew-bc383d7e98a65a5fb81ca4d71cf7f074d4e8638e.tar.bz2
argus-clients 3.0.6.2
Closes #21868. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/argus-clients.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/argus-clients.rb b/Library/Formula/argus-clients.rb
new file mode 100644
index 000000000..025a7e6e6
--- /dev/null
+++ b/Library/Formula/argus-clients.rb
@@ -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