homebrew-core/Formula/repo.rb
Mike McQuaid 7a4dabfc1a Use hash rockets again. (#5177)
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
2016-09-24 16:45:48 +01:00

19 lines
491 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.12.36",
:revision => "16889ba43da81aead6bdb3acd1233381dd8e7562"
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", 1)
end
end