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.11.4-01-bundle.tar.gz" version "2.11.4-01" sha256 "2901d00c7a5c287d0ab51980b0ea8ad6a3db936e6a9bc7aea573ec4e2b516719" 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 Label com.sonatype.nexus ProgramArguments #{opt_bin}/nexus start RunAtLoad EOS end test do output = `#{bin}/nexus status` assert_match "Nexus OSS is", output end end