blob: 26b5fd664e38e6dcc14b725227805c1bc30b0df2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
require 'formula'
class IosSim < Formula
  homepage 'https://github.com/phonegap/ios-sim'
  url 'https://github.com/phonegap/ios-sim/tarball/1.5'
  md5 'bf2863dafd1766a9e02a5b22b132284d'
  def install
    system "rake", "install", "prefix=#{prefix}"
  end
end
  |