2014-08-21 07:26:17 +00:00
|
|
|
require "formula"
|
2010-12-18 19:03:48 +00:00
|
|
|
|
|
|
|
class IosSim < Formula
|
2014-08-21 07:26:17 +00:00
|
|
|
homepage "https://github.com/phonegap/ios-sim"
|
2014-10-05 15:56:10 +00:00
|
|
|
url "https://github.com/phonegap/ios-sim/archive/3.0.0.tar.gz"
|
|
|
|
sha1 "e5b5dd2a622549f105935c3f6fc3cce93aba7b45"
|
2014-08-21 07:26:17 +00:00
|
|
|
head "https://github.com/phonegap/ios-sim.git"
|
2013-08-01 17:06:29 +00:00
|
|
|
|
2014-08-21 08:13:25 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-10-05 16:04:25 +00:00
|
|
|
sha1 "a3d4fca43c68809b156490b018190df8059a0ebf" => :mavericks
|
|
|
|
sha1 "747cd81a2dfae3c14a4d41ff286d60dc9c939d5b" => :mountain_lion
|
2014-08-21 08:13:25 +00:00
|
|
|
end
|
|
|
|
|
2014-10-05 15:56:10 +00:00
|
|
|
depends_on :macos => :mountain_lion
|
2010-12-18 19:03:48 +00:00
|
|
|
|
|
|
|
def install
|
2013-01-31 05:24:51 +00:00
|
|
|
rake "install", "prefix=#{prefix}"
|
2010-12-18 19:03:48 +00:00
|
|
|
end
|
|
|
|
end
|