blob: 8e294067afc85694908888fd72d4ee5e3048ecd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class GitSh < Formula
url 'https://github.com/rtomayko/git-sh/tarball/800769328ed381638c13e6eec2c3b21a58d74867'
homepage 'https://github.com/rtomayko/git-sh'
md5 'f736b2c6aea13140af4011672c7d11c3'
version '20110918'
head 'https://github.com/rtomayko/git-sh.git'
# Not depending on git because people might have it
# installed through another means
def install
system "make"
system "make install PREFIX=#{prefix}"
end
end
|