homebrew-core/Formula/jadx.rb

40 lines
1.1 KiB
Ruby

class Jadx < Formula
desc "Dex to Java decompiler"
homepage "https://github.com/skylot/jadx"
url "https://github.com/skylot/jadx/releases/download/v1.1.0/jadx-1.1.0.zip"
sha256 "91948067a60feee36512e043b288f726678ddd760aa11a01496b53df95465b16"
revision 1
head do
url "https://github.com/skylot/jadx.git"
depends_on "gradle" => :build
end
bottle :unneeded
depends_on "openjdk"
resource "sample.apk" do
url "https://github.com/downloads/stephanenicolas/RoboDemo/robodemo-sample-1.0.1.apk"
sha256 "bf3ec04631339538c8edb97ebbd5262c3962c5873a2df9022385156c775eb81f"
end
def install
if build.head?
system "gradle", "clean", "dist"
libexec.install Dir["build/jadx/*"]
else
libexec.install Dir["*"]
end
bin.install libexec/"bin/jadx"
bin.install libexec/"bin/jadx-gui"
bin.env_script_all_files libexec/"bin", :JAVA_HOME => "${JAVA_HOME:-#{Formula["openjdk"].opt_prefix}}"
end
test do
resource("sample.apk").stage do
system "#{bin}/jadx", "-d", "out", "robodemo-sample-1.0.1.apk"
end
end
end