a6185f4ca8
Closes Homebrew/homebrew#24816. 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.8.zip'
|
|
sha1 'f33773fbede7323c3ffba80f902a297cfe31a146'
|
|
|
|
head 'https://github.com/Kentzo/git-archive-all.git'
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|