80 lines
2.3 KiB
Ruby
80 lines
2.3 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.2016-12-13T17-19-42Z",
|
|
:revision => "29d72b84c07f9555f83a6485fe8291e18d23811b"
|
|
version "20161213171942"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "9e449b6a9bfd78adfac8c24f9a835cbeb8e21fc4bc12a5d4f9fc28f33463d781" => :sierra
|
|
sha256 "3e188df8baca0217e247989eae84d82548f77c58f6a4d5a6b9b004a86c99afd9" => :el_capitan
|
|
sha256 "df8b6ef49a1a87d22b2eed46d3a523434b0ee808d575d848b516bcfd8022000b" => :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>WorkingDirectory</key>
|
|
<string>var/minio</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/minio", "version"
|
|
end
|
|
end
|