homebrew-core/Formula/smali.rb

60 lines
2.0 KiB
Ruby

class Smali < Formula
desc "Assembler/disassembler for Android's Java VM implementation"
homepage "https://github.com/JesusFreke/smali"
url "https://bitbucket.org/JesusFreke/smali/downloads/smali-2.1.3.jar"
sha256 "9b63186344a095d9bbffb27b7100ddfe933432f2b8f90f649a1e5e8cc26bb355"
bottle :unneeded
resource "baksmali-jar" do
url "https://bitbucket.org/JesusFreke/smali/downloads/baksmali-2.1.3.jar"
sha256 "01ec5e42ccd197658314967e86e311a695bc86b2ace32fc4ad95e34d3595750a"
end
resource "baksmali" do
url "https://bitbucket.org/JesusFreke/smali/downloads/baksmali"
sha256 "5d4b79776d401f2cbdb66c7c88e23cca773b9a939520fef4bf42e2856bbbfed4"
end
resource "smali" do
url "https://bitbucket.org/JesusFreke/smali/downloads/smali"
sha256 "910297fbeefb4590e6bffd185726c878382a0960fb6a7f0733f045b6faf60a30"
end
def install
resource("baksmali-jar").stage do
libexec.install "baksmali-#{version}.jar" => "baksmali.jar"
end
libexec.install "smali-#{version}.jar" => "smali.jar"
%w[smali baksmali].each do |r|
libexec.install resource(r)
inreplace libexec/r, /^libdir=.*$/, "libdir=\"#{libexec}\""
chmod 0755, libexec/r
bin.install_symlink libexec/r
end
end
test do
# From examples/HelloWorld/HelloWorld.smali in Smali project repo.
# See https://bitbucket.org/JesusFreke/smali/src/2d8cbfe6bc2d8ff2fcd7a0bf432cc808d842da4a/examples/HelloWorld/HelloWorld.smali?at=master
(testpath/"input.smali").write <<-EOS.undent
.class public LHelloWorld;
.super Ljava/lang/Object;
.method public static main([Ljava/lang/String;)V
.registers 2
sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
const-string v1, "Hello World!"
invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/String;)V
return-void
.end method
EOS
system bin/"smali", "-o", "classes.dex", "input.smali"
system bin/"baksmali", "-o", pwd, "classes.dex"
assert_match "Hello World!", File.read("HelloWorld.smali")
end
end