31dfe358d7
Closes Homebrew/homebrew#19776. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
350 B
Ruby
13 lines
350 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.7.zip'
|
|
sha1 'aba067e7b0bb83f833eac80a2117b7c2235c0f5e'
|
|
|
|
head 'https://github.com/Kentzo/git-archive-all.git'
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|