2010-04-15 06:27:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class GitSh < Formula
|
2010-11-10 18:16:28 +00:00
|
|
|
url 'https://github.com/rtomayko/git-sh/tarball/a6eba8824586ce34aff9907af448b3336f7c83d2'
|
|
|
|
homepage 'https://github.com/rtomayko/git-sh'
|
2010-04-15 06:27:52 +00:00
|
|
|
md5 '061c56717564651dd99f5cd14b2b1569'
|
|
|
|
version '20100401'
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/rtomayko/git-sh.git'
|
2010-04-15 06:27:52 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
# Not depending on git because people might have it
|
|
|
|
# installed through another means
|
2010-04-15 06:27:52 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
system "make install PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|