homebrew-core/Formula/git-sh.rb
Adam Vandenberg 7bd947eb0b Update formulae for version 0.7
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
2010-08-07 18:08:53 -07:00

17 lines
464 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'
# Not depending on git because people might have it
# installed through another means
def install
system "make"
system "make install PREFIX=#{prefix}"
end
end