homebrew-core/Formula/git-sh.rb

19 lines
467 B
Ruby
Raw Normal View History

require 'formula'
class GitSh < Formula
homepage 'https://github.com/rtomayko/git-sh'
2012-02-14 03:36:09 +00:00
url 'https://github.com/rtomayko/git-sh/tarball/800769328ed381638c13e6eec2c3b21a58d74867'
version '20110918'
2012-02-14 03:36:09 +00:00
md5 'f736b2c6aea13140af4011672c7d11c3'
2011-05-27 05:02:55 +00:00
head 'https://github.com/rtomayko/git-sh.git'
2012-02-14 03:36:09 +00:00
# Pending request for new tag:
# https://github.com/rtomayko/git-sh/issues/16
def install
system "make"
system "make", "install", "PREFIX=#{prefix}"
end
end