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-03-20T22-38-47Z", :revision => "a9032b52b86d9d8a2b89ebbf47a50bc233565f3f" version "20190320223847" bottle do cellar :any_skip_relocation sha256 "654b3fc9807a1b7a964a13312e8406ce7454a4089d8b49d236b383d7fdee178c" => :mojave sha256 "5a2517562111ef0b31790df4a01ecfec5e4b442b051271c086109ca40ce015a1" => :high_sierra sha256 "02a8e37c6144c6f82d93f4a1835fa006def36b659c8a7d746f94adeedd7cfe0f" => :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