owamp 3.4-10

Note: owamp now depends on separate i2util package, which the
"aespasswd" and "pfstore" utilities have moved to.

Closes Homebrew/homebrew#34706.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Brian Candler 2014-12-05 16:32:11 +00:00 committed by Mike McQuaid
parent 83cc68f163
commit da5089c838
1 changed files with 11 additions and 5 deletions

View File

@ -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