require 'formula' class Nexus < Formula homepage 'http://www.sonatype.org/' url 'http://download.sonatype.com/nexus/oss/nexus-2.6.2-01-bundle.tar.gz' version '2.6.2-01' sha1 '046c4b9ed27e4d05eec1be80b676f4ee25ba352a' # Put the sonatype-work directory in the var directory, to persist across version updates def patches DATA end def install rm_f Dir['bin/*.bat'] libexec.install Dir["nexus-2.6.2-01/*"] bin.install_symlink libexec/'bin/nexus' end plist_options :manual => "#{HOMEBREW_PREFIX}/opt/nexus/libexec/bin/nexus { console | start | stop | restart | status | dump }" def plist; <<-EOS.undent Label com.sonatype.nexus ProgramArguments #{opt_prefix}/bin/nexus start RunAtLoad EOS end def caveats; <<-EOS.undent If you are upgrading nexus for the first time, and old version is less than 2.3.1, then you will need to copy the sonatype-work directory from: #{HOMEBREW_PREFIX}/Cellar/#{name}// to #{var} EOS end end __END__ diff --git a/nexus-2.6.2-01/conf/nexus.properties b/nexus-2.6.2-01/conf/nexus.properties index df89251..23b536b 100644 --- a/nexus-2.6.2-01/conf/nexus.properties +++ b/nexus-2.6.2-01/conf/nexus.properties @@ -22,5 +22,5 @@ nexus-webapp=${bundleBasedir}/nexus nexus-webapp-context-path=/nexus # Nexus section -nexus-work=${bundleBasedir}/../sonatype-work/nexus +nexus-work=HOMEBREW_PREFIX/var/nexus runtime=${bundleBasedir}/nexus/WEB-INF