git-extras 2.0.0
This commit is contained in:
parent
a6fc9bf6a4
commit
363c7fc7ee
1 changed files with 7 additions and 7 deletions
|
@ -1,11 +1,11 @@
|
|||
require 'formula'
|
||||
require "formula"
|
||||
|
||||
class GitExtras < Formula
|
||||
homepage 'https://github.com/visionmedia/git-extras'
|
||||
url 'https://github.com/visionmedia/git-extras/archive/1.9.1.tar.gz'
|
||||
sha1 '145124710f2f06f17984e335c8b840c90c43eb44'
|
||||
homepage "https://github.com/visionmedia/git-extras"
|
||||
url "https://github.com/visionmedia/git-extras/archive/2.0.0.tar.gz"
|
||||
sha1 "1cb12caffc76d3285d60a3b2b169e3ce6040998c"
|
||||
|
||||
head 'https://github.com/visionmedia/git-extras.git', :branch => 'master'
|
||||
head "https://github.com/visionmedia/git-extras.git", :branch => "master"
|
||||
|
||||
bottle do
|
||||
cellar :any
|
||||
|
@ -15,10 +15,10 @@ class GitExtras < Formula
|
|||
end
|
||||
|
||||
# Don't take +x off these files
|
||||
skip_clean 'bin'
|
||||
skip_clean "bin"
|
||||
|
||||
def install
|
||||
inreplace 'Makefile', %r|\$\(DESTDIR\)(?=/etc/bash_completion\.d)|, '$(DESTDIR)$(PREFIX)'
|
||||
inreplace "Makefile", %r|\$\(DESTDIR\)(?=/etc/bash_completion\.d)|, "$(DESTDIR)$(PREFIX)"
|
||||
system "make", "PREFIX=#{prefix}", "install"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue