blob: 3c5f1c917cf63cb29c8b3b0fdaa0fab515e7c29c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | require 'formula'
class GitSh < Formula
  homepage 'https://github.com/rtomayko/git-sh'
  url 'https://github.com/rtomayko/git-sh/tarball/800769328ed381638c13e6eec2c3b21a58d74867'
  version '20110918'
  md5 'f736b2c6aea13140af4011672c7d11c3'
  head 'https://github.com/rtomayko/git-sh.git'
  # Pending request for new tag:
  # https://github.com/rtomayko/git-sh/issues/16
  def install
    system "make"
    system "make", "install", "PREFIX=#{prefix}"
  end
end
 |