7a4dabfc1a
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
45 lines
1.3 KiB
Ruby
45 lines
1.3 KiB
Ruby
class Nexus < Formula
|
|
desc "Repository manager for binary software components"
|
|
homepage "http://www.sonatype.org/"
|
|
url "https://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-2.13.0-01-bundle.tar.gz"
|
|
version "2.13.0-01"
|
|
sha256 "4c4e88a2410e1740e688ea1ab3c6066a6a90f76c479e10e4718c517a27f3a614"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
# 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"
|
|
libexec.install Dir["nexus-#{version}/*"]
|
|
bin.install_symlink libexec/"bin/nexus"
|
|
end
|
|
|
|
plist_options :manual => "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_bin}/nexus</string>
|
|
<string>start</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
output = `#{bin}/nexus status`
|
|
assert_match "Nexus OSS is", output
|
|
end
|
|
end
|