376d47d604
Another in-place release on the FTP server. Updated the checksums for perforce, perforce-proxy, and perforce-server formulae. Looks like perforce formula was updated for new checksum at some point, but version number was not updated to match, so fixing that as well. Closes Homebrew/homebrew#19397. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
488 B
Ruby
19 lines
488 B
Ruby
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.585708-x86_64'
|
|
sha1 '6ecdbd5559ea4d04cddf81d76afe71e5cbe2baee'
|
|
else
|
|
url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86/p4'
|
|
version '2012.2.585708-x86'
|
|
sha1 '5ed386620ce7a86e809b75d7a2d19f079a34f0ad'
|
|
end
|
|
|
|
def install
|
|
bin.install 'p4'
|
|
end
|
|
end
|