2011-01-22 21:33:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Jenkins < Formula
|
2011-01-22 21:33:11 +00:00
|
|
|
homepage 'http://jenkins-ci.org'
|
2012-05-21 04:35:46 +00:00
|
|
|
url 'http://mirrors.jenkins-ci.org/war/1.464/jenkins.war'
|
|
|
|
version '1.464'
|
|
|
|
md5 'a859f7340fa85edd18f7837d92b987a8'
|
2012-05-04 03:40:15 +00:00
|
|
|
|
2012-02-14 05:52:14 +00:00
|
|
|
head 'https://github.com/jenkinsci/jenkins.git'
|
2011-01-22 21:33:11 +00:00
|
|
|
|
|
|
|
def install
|
2011-09-04 17:37:05 +00:00
|
|
|
system "mvn clean install -pl war -am -DskipTests && mv war/target/jenkins.war ." if ARGV.build_head?
|
2012-05-04 03:40:15 +00:00
|
|
|
libexec.install "jenkins.war"
|
2011-12-31 05:56:52 +00:00
|
|
|
plist_path.write startup_plist
|
|
|
|
plist_path.chmod 0644
|
2011-01-22 21:33:11 +00:00
|
|
|
end
|
|
|
|
|
2012-05-04 03:40:15 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
If this is your first install, automatically load on login with:
|
|
|
|
mkdir -p ~/Library/LaunchAgents
|
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2011-01-22 21:33:11 +00:00
|
|
|
|
2012-05-04 03:40:15 +00:00
|
|
|
If this is an upgrade and you already have the #{plist_path.basename} loaded:
|
|
|
|
launchctl unload -w ~/Library/LaunchAgents/#{plist_path.basename}
|
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2011-01-22 21:33:11 +00:00
|
|
|
|
2012-05-04 03:40:15 +00:00
|
|
|
Or start it manually:
|
|
|
|
java -jar #{libexec}/jenkins.war
|
|
|
|
EOS
|
2011-01-22 21:33:11 +00:00
|
|
|
end
|
|
|
|
|
2012-05-04 03:40:15 +00:00
|
|
|
def startup_plist; <<-EOS
|
2011-01-22 21:33:11 +00:00
|
|
|
<?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>
|
2012-05-04 03:40:15 +00:00
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>/usr/bin/java</string>
|
|
|
|
<string>-jar</string>
|
2012-05-04 04:27:00 +00:00
|
|
|
<string>#{libexec}/jenkins.war</string>
|
2012-05-04 03:40:15 +00:00
|
|
|
<string>--httpListenAddress=127.0.0.1</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
2011-01-22 21:33:11 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|