diff options
| author | Lars Eggert | 2013-09-26 15:54:26 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-05 10:17:02 -0700 |
| commit | d10ebcc5595ae187e6453a53e7fcc24eb5a60af8 (patch) | |
| tree | 9a8416b8859406c453e69f37066e19224d2c29fb /Library/Formula | |
| parent | 401cbaa9949086f5d6269e0fd4ce637cc9ac19df (diff) | |
| download | homebrew-d10ebcc5595ae187e6453a53e7fcc24eb5a60af8.tar.bz2 | |
owamp 3.3.
Closes #22848.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/owamp.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/owamp.rb b/Library/Formula/owamp.rb new file mode 100644 index 000000000..eff3998cd --- /dev/null +++ b/Library/Formula/owamp.rb @@ -0,0 +1,15 @@ +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' + + def install + system "./configure", "--disable-debug", + "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--mandir=#{man}" + system "make install" + end +end |
