class Chisel < Formula desc "Collection of LLDB commands to assist debugging iOS apps" homepage "https://github.com/facebook/chisel" url "https://github.com/facebook/chisel/archive/1.4.0.tar.gz" sha256 "94d695cbc24343f8002c2b68a68bcc00601ab161ef24d16ee0718c93a2889493" head "https://github.com/facebook/chisel.git" bottle :unneeded def install libexec.install Dir["*.py", "commands"] prefix.install "PATENTS" end def caveats; <<-EOS.undent Add the following line to ~/.lldbinit to load chisel when Xcode launches: command script import #{opt_libexec}/fblldb.py EOS end test do xcode_path = `xcode-select --print-path`.strip lldb_rel_path = "Contents/SharedFrameworks/LLDB.framework/Resources/Python" ENV["PYTHONPATH"] = "#{xcode_path}/../../#{lldb_rel_path}" system "python", "#{libexec}/fblldb.py" end end