aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCharles H. Leggett2013-08-13 07:29:36 -0400
committerAdam Vandenberg2013-09-14 13:56:08 -0700
commit7810063d743a08e9898a040f6c66628ea363219f (patch)
tree2a599e2b75d38372d5c8475a53555fd49858cd35 /Library/Formula
parentbc383d7e98a65a5fb81ca4d71cf7f074d4e8638e (diff)
downloadhomebrew-7810063d743a08e9898a040f6c66628ea363219f.tar.bz2
argus 3.0.6.1
Closes #21867. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/argus.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/argus.rb b/Library/Formula/argus.rb
new file mode 100644
index 000000000..039930408
--- /dev/null
+++ b/Library/Formula/argus.rb
@@ -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