aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrian Candler2014-12-05 16:32:11 +0000
committerMike McQuaid2014-12-05 19:16:35 +0000
commit27c913d9362781bef6936743a7b7f022e8058daf (patch)
tree23e153ab4b5814e1fc80f46d23525ab6179eed64 /Library/Formula
parent2e78089d139da4508edc1c488b290ecb32b3739e (diff)
downloadhomebrew-27c913d9362781bef6936743a7b7f022e8058daf.tar.bz2
owamp 3.4-10
Note: owamp now depends on separate i2util package, which the "aespasswd" and "pfstore" utilities have moved to. Closes #34706. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/owamp.rb16
1 files changed, 11 insertions, 5 deletions
diff --git a/Library/Formula/owamp.rb b/Library/Formula/owamp.rb
index 4611442eb..40dedf232 100644
--- a/Library/Formula/owamp.rb
+++ b/Library/Formula/owamp.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Owamp < Formula
- homepage 'http://www.internet2.edu/performance/owamp/'
- url 'http://software.internet2.edu/sources/owamp/owamp-3.3.tar.gz'
- sha1 'ac3b77294ee30d41924b01fc009de0b2605a753c'
+ homepage "http://www.internet2.edu/performance/owamp/"
+ url "http://software.internet2.edu/sources/owamp/owamp-3.4-10.tar.gz"
+ sha1 "acf7502eef15fc0ac14d1b1d86e28759b4bc39fe"
bottle do
cellar :any
@@ -12,6 +12,8 @@ class Owamp < Formula
sha1 "34531c931ad6b22e4328b3823f2c2f38027db2c6" => :mountain_lion
end
+ depends_on "i2util"
+
# Fix to prevent tests hanging under certain circumstances.
# Provided by Aaron Brown via perfsonar-user mailing list:
# https://lists.internet2.edu/sympa/arc/perfsonar-user/2014-11/msg00131.html
@@ -25,6 +27,10 @@ class Owamp < Formula
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
- system "make install"
+ system "make", "install"
+ end
+
+ test do
+ system "#{bin}/owping", "-h"
end
end