class Llnode < Formula desc "LLDB plugin for live/post-mortem debugging of node.js apps" homepage "https://github.com/nodejs/llnode" url "https://github.com/nodejs/llnode/archive/v1.5.1.tar.gz" sha256 "f4c6372e079c5c8206d5b133c68ad5615fcddd370279a73793f4653287b3f257" bottle do cellar :any sha256 "822236b6d255bfa8895edec21a9e8a16b6514ecc4abcca159e060a1de06001d0" => :sierra sha256 "4ef8344e871b0274d457885ca4ee5ff340fc2e5839ad06b236cb38275d7f8198" => :el_capitan sha256 "956c59ba9ab34314368198fa117e6a28082288c45078f108c64e800ec147ef57" => :yosemite end depends_on :macos => :yosemite depends_on :python => :build resource "gyp" do url "https://chromium.googlesource.com/external/gyp.git", :revision => "db72e9fcf55ba9d8089f0bc7e447180f8972b5c0" end resource "lldb" do if MacOS::Xcode.version >= "8.3" # lldb 390 url "https://github.com/llvm-mirror/lldb.git", :revision => "d556e60f02a7404b291d07cac2f27512c73bc743" elsif MacOS::Xcode.version >= "8.0" # lldb 360.1 url "https://github.com/llvm-mirror/lldb.git", :revision => "839b868e2993dcffc7fea898a1167f1cec097a82" else # It claims it to be lldb 350.0 for Xcode 7.3, but in fact it is based # of 34. # Xcode < 7.3 uses 340.4, so I assume we should be safe to go with this. url "http://llvm.org/svn/llvm-project/lldb/tags/RELEASE_34/final/", :using => :svn end end def install (buildpath/"lldb").install resource("lldb") (buildpath/"tools/gyp").install resource("gyp") system "./gyp_llnode" system "make", "-C", "out/" prefix.install "out/Release/llnode.dylib" end def caveats; <<-EOS.undent `brew install llnode` does not link the plugin to LLDB PlugIns dir. To load this plugin in LLDB, one will need to either * Type `plugin load #{opt_prefix}/llnode.dylib` on each run of lldb * Install plugin into PlugIns dir manually: mkdir -p ~/Library/Application\\ Support/LLDB/PlugIns ln -sf #{opt_prefix}/llnode.dylib \\ ~/Library/Application\\ Support/LLDB/PlugIns/ EOS end test do lldb_out = pipe_output "lldb", <<-EOS.undent plugin load #{opt_prefix}/llnode.dylib help v8 quit EOS assert_match /v8 bt/, lldb_out end end