2010-06-28 21:18:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class PerforceServer < Formula
|
2010-06-28 21:18:13 +00:00
|
|
|
homepage 'http://www.perforce.com/'
|
2012-05-21 20:06:23 +00:00
|
|
|
|
|
|
|
if MacOS.prefer_64_bit?
|
|
|
|
url 'http://filehost.perforce.com/perforce/r12.1/bin.darwin90x86_64/p4d'
|
|
|
|
md5 '30779829f7bdfdea5c57c5018e7cff35'
|
|
|
|
version '2012.1.459601-x86_64'
|
|
|
|
else
|
|
|
|
url 'http://filehost.perforce.com/perforce/r12.1/bin.darwin90x86/p4d'
|
|
|
|
md5 '4bae8014aa541b453e524f65cfb15dcc'
|
|
|
|
version '2012.1.459601-x86'
|
|
|
|
end
|
2010-06-28 21:18:13 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'p4d'
|
|
|
|
end
|
|
|
|
end
|