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