class Minio < Formula desc "Amazon S3 compatible object storage server" homepage "https://github.com/minio/minio" url "https://github.com/minio/minio.git", :tag => "RELEASE.2020-01-03T19-12-21Z", :revision => "b00cda8ad49ed0defa9df5e7230f8b536b8ccb17" version "20200103191221" bottle do cellar :any_skip_relocation sha256 "b522ff69deef97ffdc4e72a001d554294bf6d648f8a6e2cff904d5ae620d54b9" => :catalina sha256 "47dd093034b9b4afdaf0ff80501393e87592f0a811e3931e505ef8128d6f98a7" => :mojave sha256 "01ed054d03e061508aaf60719ce1966092e65485af91dc06d87908a8e35d831a" => :high_sierra end depends_on "go" => :build def install if build.head? system "go", "build", "-trimpath", "-o", bin/"minio" else release = `git tag --points-at HEAD`.chomp version = release.gsub(/RELEASE\./, "").chomp.gsub(/T(\d+)\-(\d+)\-(\d+)Z/, 'T\1:\2:\3Z') commit = `git rev-parse HEAD`.chomp proj = "github.com/minio/minio" system "go", "build", "-trimpath", "-o", bin/"minio", "-ldflags", <<~EOS -X #{proj}/cmd.Version=#{version} -X #{proj}/cmd.ReleaseTag=#{release} -X #{proj}/cmd.CommitID=#{commit} EOS end prefix.install_metafiles end def post_install (var/"minio").mkpath (etc/"minio").mkpath end plist_options :manual => "minio server" def plist <<~EOS KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/minio server --config-dir=#{etc}/minio --address=:9000 #{var}/minio RunAtLoad KeepAlive WorkingDirectory #{HOMEBREW_PREFIX} StandardErrorPath #{var}/log/minio.log StandardOutPath #{var}/log/minio.log RunAtLoad EOS end test do system "#{bin}/minio", "--version" end end