blob: 157c33080132ccfdb9c5253b383084be38e42155 (
plain)
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
|
require 'formula'
class Hudson <Formula
url 'http://ftp.osuosl.org/pub/hudson/war/1.394/hudson.war', :using => :nounzip
version '1.394'
md5 'be0f2246315dc0964a5f1ba519371230'
homepage 'http://hudson-ci.org'
def install
lib.install "hudson.war"
(prefix+'org.hudson-ci.plist').write startup_plist
end
def caveats; <<-EOS
If this is your first install, automatically load on login with:
cp #{prefix}/org.hudson-ci.plist ~/Library/LaunchAgents
launchctl load -w ~/Library/LaunchAgents/org.hudson-ci.plist
If this is an upgrade and you already have the org.hudson-ci.plist loaded:
launchctl unload -w ~/Library/LaunchAgents/org.hudson-ci.plist
cp #{prefix}/org.hudson-ci.plist ~/Library/LaunchAgents
launchctl load -w ~/Library/LaunchAgents/org.hudson-ci.plist
Or start it manually:
java -jar #{lib}/hudson.war
EOS
end
def startup_plist
return <<-EOS
<?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>Hudson</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/java</string>
<string>-jar</string>
<string>#{lib}/hudson.war</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
end
|