homebrew-core/Formula/nexus.rb

40 lines
1.2 KiB
Ruby
Raw Normal View History

require 'formula'
class Nexus < Formula
homepage 'http://www.sonatype.org/'
url 'http://download.sonatype.com/nexus/oss/nexus-2.7.0-05-bundle.tar.gz'
version '2.7.0-05'
sha1 '9a1e284f56228a1eae1ba2a6102e29ef0b4be80e'
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}/*"]
bin.install_symlink libexec/'bin/nexus'
end
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/nexus/libexec/bin/nexus start"
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>
<string>#{opt_prefix}/bin/nexus</string>
<string>start</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
end