diff options
| author | Eloy Duran | 2010-12-18 20:03:48 +0100 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-12-18 16:24:36 -0800 | 
| commit | dc051c8a6f47bcf49c4d79a6f10c5a88e4e7e0ed (patch) | |
| tree | dd8245a636d7ab384156cdc03b723a95915e1e41 /Library/Formula/ios-sim.rb | |
| parent | 7c495665d72531a090c9cba67917ac464987e654 (diff) | |
| download | homebrew-dc051c8a6f47bcf49c4d79a6f10c5a88e4e7e0ed.tar.bz2 | |
ios-sim - command-line launcher for the iOS Simulator
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ios-sim.rb')
| -rw-r--r-- | Library/Formula/ios-sim.rb | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/ios-sim.rb b/Library/Formula/ios-sim.rb new file mode 100644 index 000000000..feac7847b --- /dev/null +++ b/Library/Formula/ios-sim.rb @@ -0,0 +1,11 @@ +require 'formula' + +class IosSim < Formula +  url "https://github.com/Fingertips/ios-sim/tarball/1.1" +  homepage "https://github.com/Fingertips/ios-sim" +  md5 "ea70e2889390844ce2a72f1345df0e69" + +  def install +    system "rake install prefix='#{prefix}'" +  end +end  | 
