diff options
| author | Isao Yagi | 2012-03-07 10:02:54 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-03-25 19:55:25 -0700 | 
| commit | 45dada1186a77e4127b3679d2f016ac39e0d3ed6 (patch) | |
| tree | 1ddb2c4987bbe3c96bb413c2b22d40f72625d990 | |
| parent | 7628b20aa2a64ed38053452c7d990692b97f3aa4 (diff) | |
| download | homebrew-45dada1186a77e4127b3679d2f016ac39e0d3ed6.tar.bz2 | |
wait_on 1.1
Closes #10753.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/wait_on.rb | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/Library/Formula/wait_on.rb b/Library/Formula/wait_on.rb new file mode 100644 index 000000000..9eed1472d --- /dev/null +++ b/Library/Formula/wait_on.rb @@ -0,0 +1,19 @@ +require 'formula' + +class WaitOn < Formula +  homepage 'http://www.freshports.org/sysutils/wait_on/' +  url 'ftp://ftp.ugh.net.au/pub/unix/wait_on/wait_on-1.1.tar.gz' +  md5 '6b5917ad6136fdd8295d2d1299db10d5' + +  depends_on 'bsdmake' => :build if MacOS.xcode_version.to_f >= 4.3 + +  def install +    system "bsdmake" +    bin.install 'wait_on' +    man1.install 'wait_on.1.gz' +  end + +  def test +    system "#{bin}/wait_on -v" +  end +end | 
