32 lines
1016 B
Ruby
32 lines
1016 B
Ruby
class LeakcanaryShark < Formula
|
|
desc "CLI Java memory leak explorer for LeakCanary"
|
|
homepage "https://square.github.io/leakcanary/shark/"
|
|
url "https://github.com/square/leakcanary/releases/download/v2.6/shark-cli-2.6.zip"
|
|
sha256 "03c1f1f8e9a3e9114d7da70d244ff534e27f895a422fd1c5a17b7722e825e75b"
|
|
license "Apache-2.0"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "openjdk"
|
|
|
|
resource "sample_hprof" do
|
|
url "https://github.com/square/leakcanary/raw/v2.6/shark-android/src/test/resources/leak_asynctask_m.hprof"
|
|
sha256 "7575158108b701e0f7233bc208decc243e173c75357bf0be9231a1dcb5b212ab"
|
|
end
|
|
|
|
def install
|
|
# Remove Windows scripts
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
libexec.install Dir["*"]
|
|
(bin/"shark-cli").write_env_script libexec/"bin/shark-cli", Language::Java.overridable_java_home_env
|
|
end
|
|
|
|
test do
|
|
resource("sample_hprof").stage do
|
|
assert_match "1 APPLICATION LEAKS",
|
|
shell_output("#{bin}/shark-cli --hprof ./leak_asynctask_m.hprof analyze").strip
|
|
end
|
|
end
|
|
end
|