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.2016-12-13T17-19-42Z", :revision => "29d72b84c07f9555f83a6485fe8291e18d23811b" version "20161213171942" bottle do rebuild 1 sha256 "73db244dc6cb7eb1ba5db3fd08d479b73ce55d10774deeb4f258ae6379db8c2b" => :sierra sha256 "11299659e196a85267a2181aee26bf2510bad6889de71cfd8344e4a37f5a20fc" => :el_capitan sha256 "6a40493646db7c8494a284a50c95b204c378fc46fbe633cf8f256d3575f712e4" => :yosemite 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.undent -X #{proj}/cmd.Version=#{version} -X #{proj}/cmd.ReleaseTag=#{release} -X #{proj}/cmd.CommitID=#{commit} EOS end end bin.install buildpath/"minio" end def post_install (var/"minio").mkpath (etc/"minio").mkpath end plist_options :manual => "minio server" def plist; <<-EOS.undent 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