homebrew-core/Formula/repo.rb
Caleb Xu 07125373bf
repo 1.13.4
Closes #42721.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-08-03 07:28:39 +08:00

19 lines
492 B
Ruby

class Repo < Formula
desc "Repository tool for Android development"
homepage "https://source.android.com/source/developing.html"
url "https://gerrit.googlesource.com/git-repo.git",
:tag => "v1.13.4",
:revision => "745be2ede1e67421275afc00c04d996d9d6908ee"
version_scheme 1
bottle :unneeded
def install
bin.install "repo"
doc.install (buildpath/"docs").children
end
test do
assert_match "usage:", shell_output("#{bin}/repo help 2>&1")
end
end