a0bceb95d7
A python script wrapper for git-archive that archives a git superproject and its submodules, if it has any. Takes into account .gitattributes Closes Homebrew/homebrew#16478. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
352 B
Ruby
13 lines
352 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.4.2.zip'
|
|
sha1 'd2703fdc1061e23c4e9e76b6332d6db38ebe7c6d'
|
|
|
|
head 'https://github.com/Kentzo/git-archive-all.git'
|
|
|
|
def install
|
|
system "make", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|