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