Skip to content

Instantly share code, notes, and snippets.

@lawrencelomax
Last active July 8, 2016 17:22
Show Gist options
  • Save lawrencelomax/5206dec46ef7053e7b44 to your computer and use it in GitHub Desktop.
Save lawrencelomax/5206dec46ef7053e7b44 to your computer and use it in GitHub Desktop.
WIP fbsimctl brew formula
class Fbsimctl < Formula
desc "A Powerful Command Line for Managing iOS Simulators"
homepage "https://github.com/facebook/FBSimulatorControl/"
url "https://github.com/facebook/FBSimulatorControl/archive/master.zip"
sha256 ""
version "0.0.1"
depends_on "carthage"
depends_on :xcode => "7.0"
def install
system "./build.sh", "cli", "build", "#{libexec}"
bin.install_symlink "#{libexec}/fbsimctl"
end
test do
system "#{bin}/fbsimctl", "list"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment