9d96a884ed
git-sh is a customized bash environment suitable for git work. Issue: http://github.com/mxcl/homebrew/issues#issue/1180 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
393 B
Ruby
16 lines
393 B
Ruby
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'
|
|
|
|
depends_on 'git'
|
|
|
|
def install
|
|
system "make"
|
|
system "make install PREFIX=#{prefix}"
|
|
end
|
|
end
|