homebrew-core/Formula/minio.rb
2017-02-05 13:04:28 -05:00

88 lines
2.5 KiB
Ruby

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.2017-01-25T03-14-52Z",
:revision => "29b49f9343e63a896070d75b5be377292d4736f2"
version "20170125031452"
bottle do
cellar :any_skip_relocation
sha256 "973567fd530fcbb255b548e090571ed58ffbcdfb26c27fb45ffb2c0fe0cbd524" => :sierra
sha256 "78e39f48a8ab6efee86e310b79a02e533fb86127fa8acdaef6c564b1a0bbb8ec" => :el_capitan
sha256 "c71d1f286f3497edcec90196a7070d142b6cbdf9fc4c5e85fff5f75a18fa904a" => :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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/minio</string>
<string>server</string>
<string>--config-dir=#{etc}/minio</string>
<string>--address :9000</string>
<string>#{var}/minio</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
<key>StandardErrorPath</key>
<string>#{var}/log/minio/output.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/minio/output.log</string>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
test do
system "#{bin}/minio", "version"
end
end