aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ios-sim.rb
blob: a5f13802030f5b57619c0e9ab6f8e5514c46c8d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class IosSim < Formula
  homepage 'https://github.com/phonegap/ios-sim'
  url 'https://github.com/phonegap/ios-sim/archive/1.8.2.tar.gz'
  sha1 '4328b3c8e6b455631d52b7ce5968170c9769eb1e'
  head 'https://github.com/phonegap/ios-sim.git'

  depends_on :macos => :lion

  def install
    rake "install", "prefix=#{prefix}"
  end
end