2011-01-22 21:33:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Jenkins < Formula
|
2011-09-04 17:37:05 +00:00
|
|
|
url 'http://mirrors.jenkins-ci.org/war/1.428/jenkins.war', :using => :nounzip
|
2011-10-10 20:17:11 +00:00
|
|
|
head 'https://github.com/jenkinsci/jenkins.git'
|
2011-09-04 17:37:05 +00:00
|
|
|
version '1.428'
|
|
|
|
md5 '5817e09ccc3a2996addeb8f1bc1cb6c8'
|
2011-01-22 21:33:11 +00:00
|
|
|
homepage 'http://jenkins-ci.org'
|
|
|
|
|
|
|
|
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?
|
2011-01-22 21:33:11 +00:00
|
|
|
lib.install "jenkins.war"
|
|
|
|
(prefix+'org.jenkins-ci.plist').write startup_plist
|
2011-09-02 21:41:57 +00:00
|
|
|
(prefix+'org.jenkins-ci.plist').chmod 0644
|
2011-01-22 21:33:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS
|
|
|
|
If this is your first install, automatically load on login with:
|
2011-02-27 08:07:58 +00:00
|
|
|
mkdir -p ~/Library/LaunchAgents
|
|
|
|
cp #{prefix}/org.jenkins-ci.plist ~/Library/LaunchAgents/
|
2011-01-22 21:33:11 +00:00
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.jenkins-ci.plist
|
|
|
|
|
|
|
|
If this is an upgrade and you already have the org.jenkins-ci.plist loaded:
|
|
|
|
launchctl unload -w ~/Library/LaunchAgents/org.jenkins-ci.plist
|
2011-02-27 08:07:58 +00:00
|
|
|
cp #{prefix}/org.jenkins-ci.plist ~/Library/LaunchAgents/
|
2011-01-22 21:33:11 +00:00
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.jenkins-ci.plist
|
|
|
|
|
|
|
|
Or start it manually:
|
|
|
|
java -jar #{lib}/jenkins.war
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2011-09-04 17:37:05 +00:00
|
|
|
# There is a startup plist, as well as a runner, here and here:
|
|
|
|
# https://raw.github.com/jenkinsci/jenkins/master/osx/org.jenkins-ci.plist
|
|
|
|
# https://raw.github.com/jenkinsci/jenkins/master/osx/Library/Application%20Support/Jenkins/jenkins-runner.sh
|
|
|
|
#
|
|
|
|
# Perhaps they could be integrated.
|
2011-01-22 21:33:11 +00:00
|
|
|
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>Jenkins</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>/usr/bin/java</string>
|
|
|
|
<string>-jar</string>
|
|
|
|
<string>#{lib}/jenkins.war</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|