38 lines
1.2 KiB
Ruby
38 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.13.2/bundletool-all-1.13.2.jar"
|
|
sha256 "b1b5fb21815c53d8302b31ca0bcc6d9992951365c899e353e1160ec7e7122366"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "f20598bc6fe3105246831f442d07d3b6cef333a89dd2a373bb10c3501b8249a3"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
resource "homebrew-test-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.write_jar_script libexec/"bundletool-all.jar", "bundletool"
|
|
end
|
|
|
|
test do
|
|
resource("homebrew-test-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
|