blob: a8630e783dd2c650198aa7d58a0c99a2d1ab36db (
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.5.zip'
  sha1 '2eda5684a64bd22761e8ba9229d16862108a8f30'
  head 'https://github.com/Kentzo/git-archive-all.git'
  def install
    system "make", "prefix=#{prefix}", "install"
  end
end
  |