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