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?
|
2012-11-05 17:45:51 +00:00
|
|
|
url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86_64/p4d'
|
2012-11-13 20:04:40 +00:00
|
|
|
version '2012.2.551823-x86_64'
|
|
|
|
sha1 'df326fc5d88bdd9ab4a6fe77a86f7100b0935958'
|
2012-05-21 20:06:23 +00:00
|
|
|
else
|
2012-11-05 17:45:51 +00:00
|
|
|
url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86/p4d'
|
2012-11-13 20:04:40 +00:00
|
|
|
version '2012.2.551823-x86'
|
|
|
|
sha1 'd70a8d19c86b75286ed5bba54241992931196f0e'
|
2012-05-21 20:06:23 +00:00
|
|
|
end
|
2010-06-28 21:18:13 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'p4d'
|
|
|
|
end
|
|
|
|
end
|