e11933bb1f
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
368 B
Ruby
14 lines
368 B
Ruby
require 'formula'
|
|
|
|
class GitGerrit < Formula
|
|
url 'https://github.com/fbzhong/git-gerrit/tarball/v0.2.0'
|
|
homepage 'https://github.com/fbzhong/git-gerrit'
|
|
md5 '943163c38db55173bc9be981d03fbd8e'
|
|
|
|
def install
|
|
prefix.install 'bin'
|
|
|
|
# install bash completions.
|
|
(prefix + 'etc/bash_completion.d').install 'completion/git-gerrit-completion.bash'
|
|
end
|
|
end
|