homebrew-core/Formula/ios-sim.rb

21 lines
529 B
Ruby
Raw Normal View History

2014-08-21 07:26:17 +00:00
require "formula"
class IosSim < Formula
2014-08-21 07:26:17 +00:00
homepage "https://github.com/phonegap/ios-sim"
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"
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
depends_on :macos => :mountain_lion
def install
2013-01-31 05:24:51 +00:00
rake "install", "prefix=#{prefix}"
end
end