homebrew-core/Formula/gibo.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

13 lines
434 B
Ruby

require 'formula'
class Gibo < Formula
homepage 'https://github.com/simonwhitaker/gitignore-boilerplates'
url 'https://github.com/simonwhitaker/gitignore-boilerplates/archive/1.0.1.tar.gz'
sha1 'f1c232bb04c1514586fda2e60fb11ab2fcdd8ea0'
def install
bin.install "gibo"
(prefix/'etc/bash_completion.d').install 'gibo-completion.bash'
(share/'zsh/site-functions').install 'gibo-completion.zsh' => '_gibo'
end
end