diff options
| author | Matt Buck | 2010-04-15 01:27:52 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-30 08:50:41 -0700 |
| commit | 83589bbfcb701637fde189406536e46328650b33 (patch) | |
| tree | aeb71ded392e9c3ed744623f25592b9c8be1af6a /Library/Formula | |
| parent | 4cc803b430f13c1f123a8fed9bdd236fa43e5f1b (diff) | |
| download | homebrew-83589bbfcb701637fde189406536e46328650b33.tar.bz2 | |
New formula git-sh
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>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/git-sh.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/git-sh.rb b/Library/Formula/git-sh.rb new file mode 100644 index 000000000..2befabede --- /dev/null +++ b/Library/Formula/git-sh.rb @@ -0,0 +1,16 @@ +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 |
