homebrew-core/Formula/repo.rb

29 lines
741 B
Ruby

class Repo < Formula
include Language::Python::Shebang
desc "Repository tool for Android development"
homepage "https://source.android.com/source/developing.html"
url "https://gerrit.googlesource.com/git-repo.git",
tag: "v2.19",
revision: "2a089cfee4a3eb0c28cfb441861fc1fcb05797d3"
license "Apache-2.0"
version_scheme 1
bottle do
sha256 cellar: :any_skip_relocation, all: "98cdd507256c7c0025d33b1b820a90cd19f2a9143b9527b91d154c78b237a5f7"
end
depends_on "python@3.10"
def install
bin.install "repo"
rewrite_shebang detected_python_shebang, bin/"repo"
doc.install (buildpath/"docs").children
end
test do
assert_match "usage:", shell_output("#{bin}/repo help 2>&1")
end
end