forked from jdowning/homebrew-binary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
perforce-proxy.rb
66 lines (59 loc) · 1.93 KB
/
perforce-proxy.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
class PerforceProxy < Formula
desc "Proxy for Perforce applications"
homepage "http://www.perforce.com/"
version "2015.2.1252060"
if MacOS.prefer_64_bit?
url "http://filehost.perforce.com/perforce/r15.2/bin.darwin90x86_64/p4p"
sha256 "f04604088b917cfbc932380f8cd205d7c508911d7cc98f00070d9d458e00101b"
else
url "http://filehost.perforce.com/perforce/r15.2/bin.darwin90x86/p4p"
sha256 "876d021cc69ac27dfeaf67db81f1cab110c708d1826c447fb73172eb8cb6ae8a"
end
bottle :unneeded
def install
bin.install "p4p"
(var+"p4p").mkpath
end
def caveats; <<-EOS.undent
To use the Perforce proxy to access your Perforce server, set your P4PORT
environment variable to "localhost:1666".
Before starting the proxy server, you probably need to edit the plist to use
the correct host and port for your Perforce server (replacing the default
perforce:1666).
EOS
end
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/p4p</string>
<string>-p</string>
<string>1666</string>
<string>-r</string>
<string>#{var}/p4p</string>
<string>-t</string>
<string>perforce:1666</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>WorkingDirectory</key>
<string>#{var}/p4p</string>
</dict>
</plist>
EOS
end
test do
os_tag = (MacOS.prefer_64_bit? ? "P4P/DARWIN90X86_64" : "P4P/DARWIN90X86")
(version_year, version_minor, version_build) = version.to_s.split(".")
assert_match(
%r{#{os_tag}/#{version_year}\.#{version_minor}/#{version_build} },
shell_output("#{bin}/p4p -V"))
end
end