blob: e05c9efcd5b3fcb8e420adf0b44397cdff229e4d (
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'
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
|