26 lines
1 KiB
Ruby
26 lines
1 KiB
Ruby
class RancherCompose < Formula
|
|
desc "Docker compose compatible client to deploy to Rancher"
|
|
homepage "https://github.com/rancher/rancher-compose"
|
|
url "https://github.com/rancher/rancher-compose/archive/v0.5.2.tar.gz"
|
|
sha256 "f095d057a620d49c9be918884c697a6b92cbef9bd3ebc01bacbd82cbd998bb51"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "9d895e3c337f4a0bc0d520a2233eb7cf493ef0719034850f5fb7e8ed3b902ffa" => :el_capitan
|
|
sha256 "b77a3e5af1e56af9ef9c68c478d104ef2c57ff3dfc0fe204227af48721674dc5" => :yosemite
|
|
sha256 "fa0311a16d136b91fffe520f66759756fcfa219086d10097d97ba9a3ea5d940c" => :mavericks
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = "#{buildpath}:#{buildpath}/Godeps/_workspace"
|
|
mkdir_p "#{buildpath}/src/github.com/rancher"
|
|
ln_s buildpath, "#{buildpath}/src/github.com/rancher/rancher-compose"
|
|
system "go", "build", "-ldflags", "-w -X github.com/rancher/rancher-compose/version.VERSION #{version}", "-o", "#{bin}/rancher-compose"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/rancher-compose", "help"
|
|
end
|
|
end
|