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.2019-08-29T00-25-01Z", :revision => "eb18c82976251d9a0c0730df27e10204c89beae2" version "20190829002501" bottle do cellar :any_skip_relocation sha256 "fff2da8cec5959ecd7c3a5e3c8b796f1c60539f7ad0ac0dd87b7e631fa9ca604" => :mojave sha256 "4087e5bd650645204c8f303f2e5845079436ad2f4fe2eff135198c144f21c9cb" => :high_sierra sha256 "18ca5c1f8c4705ab82c3c57f08ebf1aa17b6c5eea7b8cf91acae7e611221b3b6" => :sierra end depends_on "go" => :build def install ENV["GOPATH"] = buildpath ENV["GO111MODULE"] = "on" src = buildpath/"src/github.com/minio/minio" src.install buildpath.children src.cd do if build.head? system "go", "build", "-o", buildpath/"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", "-o", buildpath/"minio", "-ldflags", <<~EOS -X #{proj}/cmd.Version=#{version} -X #{proj}/cmd.ReleaseTag=#{release} -X #{proj}/cmd.CommitID=#{commit} EOS end end bin.install buildpath/"minio" 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