diff options
| author | Richard Lee | 2015-04-03 23:17:52 +0800 | 
|---|---|---|
| committer | Mike McQuaid | 2015-04-06 21:36:36 +0100 | 
| commit | dacc6da83ea977a8443c85114a09aecb5a65cb37 (patch) | |
| tree | 965dd72278595450daa6b7b7e3e97912757c5445 | |
| parent | 88500995c420981afe3e4373bccd77dbbebbcceb (diff) | |
| download | homebrew-dacc6da83ea977a8443c85114a09aecb5a65cb37.tar.bz2 | |
watch-sim 1.0.0
Closes #38339.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/watch-sim.rb | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/Library/Formula/watch-sim.rb b/Library/Formula/watch-sim.rb new file mode 100644 index 000000000..8e3e82413 --- /dev/null +++ b/Library/Formula/watch-sim.rb @@ -0,0 +1,18 @@ +class WatchSim < Formula +  homepage "https://github.com/alloy/watch-sim" +  url "https://github.com/alloy/watch-sim/archive/1.0.0.tar.gz" +  sha256 "138616472e980276999fee47072a24501ea53ce3f7095a3de940e683341b7cba" +  head "https://github.com/alloy/watch-sim.git" + +  depends_on :xcode => "6.2" + +  def install +    system "make" +    bin.install "watch-sim" +  end + +  test do +    assert_match(/Usage: watch-sim/, +                 shell_output("#{bin}/watch-sim 2>&1", 1)) +  end +end | 
