forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins-lts.rb
43 lines (38 loc) · 1.22 KB
/
jenkins-lts.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
require 'formula'
class JenkinsLts < Formula
homepage 'http://jenkins-ci.org/#stable'
version '1.509.1'
url "http://mirrors.jenkins-ci.org/war-stable/#{version}/jenkins.war"
sha1 '6af69ba946bfeae8f7dc6e6318e30fe92ce56047'
conflicts_with 'jenkins',
:because => 'both use the same data directory: $HOME/.jenkins'
def install
libexec.install "jenkins.war"
end
plist_options :manual => "java -jar #{HOMEBREW_PREFIX}/opt/jenkins-lts/libexec/jenkins.war"
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>/usr/bin/java</string>
<string>-jar</string>
<string>#{opt_prefix}/libexec/jenkins.war</string>
<string>--httpListenAddress=127.0.0.1</string>
<string>--httpPort=8080</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
def caveats; <<-EOS.undent
Note: When using launchctl the port will be 8080.
EOS
end
end