homebrew-core/Formula/corectl.rb
2016-08-03 21:48:01 -07:00

62 lines
1.8 KiB
Ruby

class Corectl < Formula
desc "CoreOS over OS X made very simple"
homepage "https://github.com/TheNewNormal/corectl"
url "https://github.com/TheNewNormal/corectl/archive/v0.7.15.tar.gz"
sha256 "c574ab77948691ad73d7c9ae7f61a6e33cb2ace2e3382580eb7cf548887ea8d4"
head "https://github.com/TheNewNormal/corectl.git", :branch => "golang"
bottle do
cellar :any_skip_relocation
sha256 "a34ac2ed5295258def1fa9a04873840cbabe6b3b09c9c83af8efec857b28caa9" => :el_capitan
sha256 "8faa8fd5ee0eded849fb4d2f9ed4137580d83fb1795fb19c682c8160532bd01d" => :yosemite
end
depends_on "go" => :build
depends_on "godep" => :build
depends_on "ocaml" => :build
depends_on "opam" => :build
depends_on :macos => :yosemite
def install
ENV["GOPATH"] = buildpath
opamroot = buildpath/"opamroot"
opamroot.mkpath
ENV["OPAMROOT"] = opamroot
ENV["OPAMYES"] = "1"
path = buildpath/"src/github.com/TheNewNormal/#{name}"
path.install Dir["*"]
args = []
args << "VERSION=#{version}" if build.stable?
cd path do
system "opam", "init", "--no-setup"
qcow_format_revision = build.head? ? "master" : "96db516d97b1c3ef2c7bccdac8fb6cfdcb667a04"
system "opam", "pin", "add", "qcow-format",
"https://github.com/mirage/ocaml-qcow.git##{qcow_format_revision}"
system "opam", "install", "uri", "qcow-format", "ocamlfind"
system "make", "tarball", *args
bin.install Dir["bin/*"]
man1.install Dir["documentation/man/*.1"]
pkgshare.install "examples"
end
end
def caveats; <<-EOS.undent
Starting with 0.7 "corectl" has a client/server architecture. So before you
can use the "corectl" cli, you have to start the server daemon:
$ corectld start
EOS
end
test do
assert_match version.to_s, shell_output("#{bin}/corectl version")
end
end