5dae38873e
Closes Homebrew/homebrew#32972. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
20 lines
585 B
Ruby
20 lines
585 B
Ruby
require 'formula'
|
|
|
|
class GitArchiveAll < Formula
|
|
homepage 'https://github.com/Kentzo/git-archive-all'
|
|
url 'https://github.com/Kentzo/git-archive-all/archive/1.9.tar.gz'
|
|
sha1 '7b5e9439e9e5dd331f36d3eb1a79d16f89488c67'
|
|
|
|
head 'https://github.com/Kentzo/git-archive-all.git'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "883e8ab977795ea4fb85ac41913e5b3b55a0f25b" => :mavericks
|
|
sha1 "6d7cd0e9d2ab7e9171585d6f121c1817719fc614" => :mountain_lion
|
|
sha1 "6833260e3badad055db6da98c6d308345c10a7d1" => :lion
|
|
end
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|