homebrew-core/Formula/ios-sim.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

11 lines
268 B
Ruby

require 'formula'
class IosSim < Formula
homepage 'https://github.com/phonegap/ios-sim'
url 'https://github.com/phonegap/ios-sim/archive/1.6.tar.gz'
sha1 '508aee052833ce6d402fae6a5dcc769049167fba'
def install
rake "install", "prefix=#{prefix}"
end
end