blob: d098635364872ee07170e792fd2bc3f13ad8892e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class GitSh < Formula
url 'http://github.com/rtomayko/git-sh/tarball/a6eba8824586ce34aff9907af448b3336f7c83d2'
homepage 'http://github.com/rtomayko/git-sh'
md5 '061c56717564651dd99f5cd14b2b1569'
version '20100401'
head 'git://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
|