aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/perforce-server.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/perforce-server.rb')
-rw-r--r--Library/Formula/perforce-server.rb50
1 files changed, 0 insertions, 50 deletions
diff --git a/Library/Formula/perforce-server.rb b/Library/Formula/perforce-server.rb
deleted file mode 100644
index 19a905fbf..000000000
--- a/Library/Formula/perforce-server.rb
+++ /dev/null
@@ -1,50 +0,0 @@
-require 'formula'
-
-class PerforceServer < Formula
- homepage 'http://www.perforce.com/'
-
- if MacOS.prefer_64_bit?
- url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86_64/p4d'
- version '2012.2.631250-x86_64'
- sha1 '21d5a904321a95026fe65890b9d9cb4043eaf84c'
- else
- url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86/p4d'
- version '2012.2.631250-x86'
- sha1 '97fae79520e2801f18600362e24eaee6d47497c0'
- end
-
- def install
- bin.install 'p4d'
- (var+"p4root").mkpath
- 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_prefix}/bin/p4d</string>
- <string>-p</string>
- <string>1666</string>
- <string>-r</string>
- <string>#{var}/p4root</string>
- </array>
- <key>RunAtLoad</key>
- <true/>
- <key>KeepAlive</key>
- <true/>
- <key>WorkingDirectory</key>
- <string>#{var}/p4root</string>
- <key>StandardErrorPath</key>
- <string>#{var}/log/p4d.log</string>
- <key>StandardOutPath</key>
- <string>#{var}/log/p4d.log</string>
- </dict>
- </plist>
- EOS
- end
-end