aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-sh.rb
blob: b18cdd0f26c0693de1c75dcf5321973d09ffcdcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class GitSh < Formula
  url 'https://github.com/rtomayko/git-sh/tarball/a6eba8824586ce34aff9907af448b3336f7c83d2'
  homepage 'https://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