52 lines
1.6 KiB
Ruby
52 lines
1.6 KiB
Ruby
class Nexus < Formula
|
|
desc "Repository manager for binary software components"
|
|
homepage "https://www.sonatype.org/"
|
|
url "https://sonatype-download.global.ssl.fastly.net/repository/downloads-prod-group/oss/nexus-2.14.18-01-bundle.tar.gz"
|
|
version "2.14.18-01"
|
|
sha256 "350af8b270bec7fda5861a15b8a5b7870fd8903d0b9a210754113d5a966ce6a6"
|
|
|
|
livecheck do
|
|
url "https://help.sonatype.com/repomanager2/download/download-archives---repository-manager-oss"
|
|
regex(/href=.*?nexus[._-]v?(\d+(?:\.\d+)+(?:-\d+)?)(?:-bundle)?\.t/i)
|
|
end
|
|
|
|
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
|
|
<?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
|