diff options
| author | Ilya Kulakov | 2012-12-08 17:17:56 +0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-01-01 21:33:19 -0800 | 
| commit | 5ec60dadff0c2769ceae8427a71f8d1963e3aa63 (patch) | |
| tree | 3c96589de68e6371a9feb06ca052440742b4a061 /Library/Formula/git-archive-all.rb | |
| parent | 40337c289612b009c6330315daa2f687230cb7fe (diff) | |
| download | homebrew-5ec60dadff0c2769ceae8427a71f8d1963e3aa63.tar.bz2 | |
git-archive-all 1.4.2
A python script wrapper for git-archive that archives
a git superproject and its submodules, if it has any.
Takes into account .gitattributes
Closes #16478.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/git-archive-all.rb')
| -rw-r--r-- | Library/Formula/git-archive-all.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/Library/Formula/git-archive-all.rb b/Library/Formula/git-archive-all.rb new file mode 100644 index 000000000..9c9a12d7f --- /dev/null +++ b/Library/Formula/git-archive-all.rb @@ -0,0 +1,13 @@ +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 | 
