aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/perforce.rb
blob: 26ca1130a1b5b5ec1c2164fa02f846c831d739bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Perforce < Formula
  homepage 'http://www.perforce.com/'

  if MacOS.prefer_64_bit?
    url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86_64/p4'
    version '2012.2.536738-x86_64'
    sha1 '4a0469279283204bbce510a849c3ffac6597c58d'
  else
    url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86/p4'
    version '2012.2.536738-x86'
    sha1 'e1271c312a822eeb3a2fe6f0380f3599ed230aa5'
  end

  def install
    bin.install 'p4'
  end
end