diff options
| -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 |
