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.2.jar" sha256 "9e587778c0329a509c82d8e78ea3e694e17106c788a4f53507920e51e50a8b83" bottle :unneeded resource "baksmali-jar" do url "https://bitbucket.org/JesusFreke/smali/downloads/baksmali-2.1.2.jar" sha256 "cf1c5884f27b9774ad92fe8ffd629bf362d554d56d6db414cd6c69d9c9068265" 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 resource("smali"), resource("baksmali"), "smali-#{version}.jar" => "smali.jar" inreplace "#{libexec}/smali" do |s| s.gsub! /^libdir=.*$/, "libdir=\"#{libexec}\"" end inreplace "#{libexec}/baksmali" do |s| s.gsub! /^libdir=.*$/, "libdir=\"#{libexec}\"" end chmod 0755, "#{libexec}/smali" chmod 0755, "#{libexec}/baksmali" bin.install_symlink libexec/"smali" bin.install_symlink libexec/"baksmali" 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