blob: e9019dec73b15bda11618e664b5eaa74fdc80a66 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | 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
 |