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-11-26T02-23-47Z", :revision => "3a73ea3f54db4bb4db75fc6956ae9faed9810dee" version "20161126022347" bottle do cellar :any_skip_relocation sha256 "cd036698ae40df3285eefbc72347581e25ed4940d3c4013331f327ed762d0b2a" => :sierra sha256 "67beb51906825c84d4d8f4b8e7b80ceb56e88519ba319a94187cd370e03ed43c" => :el_capitan sha256 "1084fcd98e1f6206f71d9f0cb1ac7b2c707ee03a65d909e5b3b2a57ee17cee92" => :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 WorkingDirectory var/minio EOS end test do system "#{bin}/minio", "version" end end