2013-02-06 00:01:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Nexus < Formula
|
|
|
|
homepage 'http://www.sonatype.org/'
|
2014-04-22 18:05:45 +00:00
|
|
|
url 'http://download.sonatype.com/nexus/oss/nexus-2.8.0-bundle.tar.gz'
|
|
|
|
version '2.8.0-05'
|
|
|
|
sha1 'bb01de56e9c5d2b83f66614296fac3d25d0c8947'
|
2013-02-06 00:01:16 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
rm_f Dir['bin/*.bat']
|
2013-09-07 11:17:39 +00:00
|
|
|
# Put the sonatype-work directory in the var directory, to persist across version updates
|
|
|
|
inreplace "nexus-#{version}/conf/nexus.properties",
|
|
|
|
'nexus-work=${bundleBasedir}/../sonatype-work/nexus',
|
|
|
|
"nexus-work=#{var}/nexus"
|
2013-09-07 11:16:23 +00:00
|
|
|
libexec.install Dir["nexus-#{version}/*"]
|
2013-02-06 00:01:16 +00:00
|
|
|
bin.install_symlink libexec/'bin/nexus'
|
|
|
|
end
|
|
|
|
|
2013-09-07 11:17:56 +00:00
|
|
|
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/nexus/libexec/bin/nexus start"
|
2013-02-06 00:01:16 +00:00
|
|
|
|
|
|
|
def plist; <<-EOS.undent
|
|
|
|
<?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>com.sonatype.nexus</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2014-03-06 05:28:31 +00:00
|
|
|
<string>#{opt_bin}/nexus</string>
|
2013-02-06 00:01:16 +00:00
|
|
|
<string>start</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|