homebrew-core/Formula/git-extras.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

17 lines
520 B
Ruby

require 'formula'
class GitExtras < Formula
homepage 'https://github.com/visionmedia/git-extras'
url 'https://github.com/visionmedia/git-extras/archive/1.7.0.tar.gz'
sha1 'c314b947f285d92c2a227c7d73f46bca258e5111'
head 'https://github.com/visionmedia/git-extras.git', :branch => 'master'
# Don't take +x off these files
skip_clean 'bin'
def install
inreplace 'Makefile', %r|\$\(DESTDIR\)(?=/etc/bash_completion\.d)|, '$(DESTDIR)$(PREFIX)'
system "make", "PREFIX=#{prefix}", "install"
end
end