88779ade49
Closes Homebrew/homebrew#14653.
18 lines
476 B
Ruby
18 lines
476 B
Ruby
require 'formula'
|
|
|
|
class GitSh < Formula
|
|
homepage 'https://github.com/rtomayko/git-sh'
|
|
url 'https://github.com/rtomayko/git-sh/tarball/800769328ed381638c13e6eec2c3b21a58d74867'
|
|
version '20110918'
|
|
sha1 'a0ce834cdae9a970b969da230c4987fa8ac6394c'
|
|
|
|
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
|