homebrew-core/Formula/llnode.rb
2016-06-29 03:02:46 +01:00

57 lines
1.7 KiB
Ruby

class Llnode < Formula
desc "LLDB plugin for live/post-mortem debugging of node.js apps"
homepage "https://github.com/indutny/llnode"
url "https://github.com/indutny/llnode/archive/v1.2.0.tar.gz"
sha256 "4e8be1b6b9abe80da3a32ce170a31b9a5fde496a66ae1699918e78643165255e"
bottle do
cellar :any
sha256 "18a71b393aa741d68afea71ab6d0548c71f19804838b393beb244cd27d1c4a45" => :el_capitan
sha256 "2504b8b254934a69a293483d78ee323c4bdd02351d8944a3932ead12748a9399" => :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
url "https://github.com/llvm-mirror/lldb.git",
:revision => "839b868e2993dcffc7fea898a1167f1cec097a82"
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