homebrew-core/Formula/jenkins.rb

55 lines
1.6 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Jenkins < Formula
homepage 'http://jenkins-ci.org'
2012-05-04 03:40:15 +00:00
url 'http://mirrors.jenkins-ci.org/war/1.462/jenkins.war'
version '1.462'
md5 '06c219c7f23f20c5f153566ee017a8cc'
2012-05-04 03:40:15 +00:00
2012-02-14 05:52:14 +00:00
head 'https://github.com/jenkinsci/jenkins.git'
def install
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"
plist_path.write startup_plist
plist_path.chmod 0644
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}
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}
2012-05-04 03:40:15 +00:00
Or start it manually:
java -jar #{libexec}/jenkins.war
EOS
end
2012-05-04 03:40:15 +00:00
def startup_plist; <<-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>
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/>
</dict>
</plist>
EOS
end
end