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"
|
|
|
|
url "https://github.com/phonegap/ios-sim/archive/2.0.1.tar.gz"
|
|
|
|
sha1 "df15d7f49561b92f8d3bf8832db60b83d7ce355e"
|
|
|
|
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
|
|
|
|
sha1 "3f28d1596a8d019ecb4fc70f758190a21e56ebcc" => :mavericks
|
|
|
|
sha1 "9ed5958db90bb227a0f0afc878f4cfb4a835fcca" => :mountain_lion
|
|
|
|
sha1 "4ad30f386778b5e395755109ec50fb725066099c" => :lion
|
|
|
|
end
|
|
|
|
|
2013-08-01 17:06:29 +00:00
|
|
|
depends_on :macos => :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
|