From f4afae4a2bb5b7ecafba5d16f3ee3bb76880e5c0 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 3 May 2012 20:40:15 -0700 Subject: Jenkins: install to libexec, not lib --- Library/Formula/jenkins.rb | 54 +++++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'Library/Formula/jenkins.rb') diff --git a/Library/Formula/jenkins.rb b/Library/Formula/jenkins.rb index 9e499456f..44d245962 100644 --- a/Library/Formula/jenkins.rb +++ b/Library/Formula/jenkins.rb @@ -2,51 +2,51 @@ require 'formula' class Jenkins < Formula homepage 'http://jenkins-ci.org' - url 'http://mirrors.jenkins-ci.org/war/1.462/jenkins.war', :using => :nounzip + url 'http://mirrors.jenkins-ci.org/war/1.462/jenkins.war' version '1.462' md5 '06c219c7f23f20c5f153566ee017a8cc' + 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? - lib.install "jenkins.war" + libexec.install "jenkins.war" plist_path.write startup_plist plist_path.chmod 0644 end - def caveats; <<-EOS -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} + 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} -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} + 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} -Or start it manually: - java -jar #{lib}/jenkins.war -EOS + Or start it manually: + java -jar #{libexec}/jenkins.war + EOS end - def startup_plist - return <<-EOS + def startup_plist; <<-EOS - Label - #{plist_name} - ProgramArguments - - /usr/bin/java - -jar - #{HOMEBREW_PREFIX}/lib/jenkins.war - --httpListenAddress=127.0.0.1 - - RunAtLoad - + Label + #{plist_name} + ProgramArguments + + /usr/bin/java + -jar + #{HOMEBREW_PREFIX}/libexec/jenkins.war + --httpListenAddress=127.0.0.1 + + RunAtLoad + EOS -- cgit v1.2.3