42 lines
1.2 KiB
Ruby
42 lines
1.2 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.4.5/jadx-1.4.5.zip"
|
|
sha256 "f1d982d35fbea5ca64f2b1ab074841771e3990070016a3d2a3f936f3875fc0d2"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "abbe08f40c9f574352998d1472ce8d5ea7f51bfad1021a6c98cc3da46bd0bb69"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/skylot/jadx.git", branch: "master"
|
|
depends_on "gradle" => :build
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
resource "homebrew-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", Language::Java.overridable_java_home_env
|
|
end
|
|
|
|
test do
|
|
resource("homebrew-sample.apk").stage do
|
|
system "#{bin}/jadx", "-d", "out", "robodemo-sample-1.0.1.apk"
|
|
end
|
|
end
|
|
end
|