blob: d2711660fba229d01f1465ec1f93cddf1ab344cf (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | require 'formula'
class GitArchiveAll < Formula
  homepage 'https://github.com/Kentzo/git-archive-all'
  url 'https://github.com/Kentzo/git-archive-all/archive/1.9.tar.gz'
  sha1 '7b5e9439e9e5dd331f36d3eb1a79d16f89488c67'
  head 'https://github.com/Kentzo/git-archive-all.git'
  bottle do
    cellar :any
    sha1 "883e8ab977795ea4fb85ac41913e5b3b55a0f25b" => :mavericks
    sha1 "6d7cd0e9d2ab7e9171585d6f121c1817719fc614" => :mountain_lion
    sha1 "6833260e3badad055db6da98c6d308345c10a7d1" => :lion
  end
  def install
    system "make", "prefix=#{prefix}", "install"
  end
end
 |