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-01-16T21-44-08Z", :revision => "8766c5eb22c1dc59721ad8a2c4c6fcf37bb2aad2" version "20190116214408" bottle do cellar :any_skip_relocation sha256 "8e53b37974c68de560351efae5dcbe71f759f5e17df8a6b21a91ba3f73de5ba5" => :mojave sha256 "9dd05af746a9fb56c1bdef3f56f2eb2b93a8e558a14d2c9c9f0f402515f05896" => :high_sierra sha256 "9b685cd35b4b3984ef3dee7c5eb700f661afd17324dc831d230c3a4f1a43208c" => :sierra end depends_on "go" => :build def install ENV["GOPATH"] = buildpath clipath = buildpath/"src/github.com/minio/minio" clipath.install Dir["*"] cd clipath 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/output.log StandardOutPath #{var}/log/minio/output.log RunAtLoad EOS end test do system "#{bin}/minio", "version" end end