2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-21 18:59:03 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Perforce < Formula
|
2010-01-13 22:34:42 +00:00
|
|
|
homepage 'http://www.perforce.com/'
|
2012-05-18 17:16:34 +00:00
|
|
|
|
|
|
|
if MacOS.prefer_64_bit?
|
2012-11-05 15:15:08 +00:00
|
|
|
url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86_64/p4'
|
|
|
|
version '2012.2.536738-x86_64'
|
2013-02-14 17:36:54 +00:00
|
|
|
sha1 '6ecdbd5559ea4d04cddf81d76afe71e5cbe2baee'
|
2012-05-18 17:16:34 +00:00
|
|
|
else
|
2012-11-05 15:15:08 +00:00
|
|
|
url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86/p4'
|
|
|
|
version '2012.2.536738-x86'
|
|
|
|
sha1 'e1271c312a822eeb3a2fe6f0380f3599ed230aa5'
|
2012-05-18 17:16:34 +00:00
|
|
|
end
|
2010-06-28 21:18:13 +00:00
|
|
|
|
2009-09-21 18:59:03 +00:00
|
|
|
def install
|
|
|
|
bin.install 'p4'
|
|
|
|
end
|
|
|
|
end
|