homebrew-core/Formula/llnode.rb
2016-04-22 00:32:41 +02: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.0.0.tar.gz"
sha256 "fcf90201930e52b49d0fa1b369aac7b5b74c3bbffe34f423d5aa5b899267f295"
bottle do
cellar :any
sha256 "8ef6767b8b4a452fd0a9a74fbc24870175b9364a7b780cf2b3d1104d63b2c70b" => :el_capitan
sha256 "b50054f05fc127b3976ad2a5c0cbd4bd19294f7b57cb2a28acf2ae51cd02406c" => :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