homebrew-core/Formula/bundletool.rb

41 lines
1.2 KiB
Ruby

class Bundletool < Formula
desc "Command-line tool to manipulate Android App Bundles"
homepage "https://github.com/google/bundletool"
url "https://github.com/google/bundletool/releases/download/1.8.1/bundletool-all-1.8.1.jar"
sha256 "08e6ca2ab3ef8bbcb088c9ca58a871adfebadab90ddf3190e3a930172ffb3f43"
license "Apache-2.0"
bottle do
sha256 cellar: :any_skip_relocation, all: "14a1731c3cd8f130bec95ecdd90a6368790ab5705fcfa647d9faf9847e963343"
end
depends_on "openjdk"
resource "bundle" do
url "https://gist.githubusercontent.com/raw/ca85ede7ac072a44f48c658be55ff0d3/sample.aab"
sha256 "aac71ad62e1f20dd19b80eba5da5cb5e589df40922f288fb6a4b37a62eba27ef"
end
def install
libexec.install "bundletool-all-#{version}.jar" => "bundletool-all.jar"
(bin/"bundletool").write <<~EOS
#!/bin/bash
exec "#{Formula["openjdk"].opt_bin}/java" -jar "#{libexec}/bundletool-all.jar" "$@"
EOS
end
test do
resource("bundle").stage do
expected = <<~EOS
App Bundle information
------------
Feature modules:
Feature module: base
File: dex/classes.dex
EOS
assert_equal expected, shell_output("#{bin}/bundletool validate --bundle sample.aab")
end
end
end