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'
|
2012-07-30 16:54:21 +00:00
|
|
|
version '2012.1.490371-x86_64'
|
|
|
|
sha1 'ac74dcfc2cd42e07f111d28b9b79f5bc4ae41e08'
|
2012-05-21 20:06:23 +00:00
|
|
|
else
|
|
|
|
url 'http://filehost.perforce.com/perforce/r12.1/bin.darwin90x86/p4d'
|
2012-07-30 16:54:21 +00:00
|
|
|
version '2012.1.490371-x86'
|
|
|
|
sha1 '89380e86bede6cc84e29a9d8283931eb7e5fa2e6'
|
2012-05-21 20:06:23 +00:00
|
|
|
end
|
2010-06-28 21:18:13 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'p4d'
|
|
|
|
end
|
|
|
|
end
|