41 lines
1.2 KiB
Ruby
41 lines
1.2 KiB
Ruby
require "language/go"
|
|
|
|
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.5.4.tar.gz"
|
|
sha256 "1ff7032d51d4a8e4581f0c10c1446acac8bf34768ec31d20eb459b90c160110d"
|
|
head "https://github.com/TheNewNormal/corectl.git", :branch => "golang"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "14038a71082300f74007f76de8fee3b455219f6f63002bc2e694720ad8f42590" => :el_capitan
|
|
sha256 "f4bafb18c96df67e09d893ab39281247fb5fb27154a97aec11d7460492e4e88c" => :yosemite
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on "godep" => :build
|
|
depends_on :macos => :yosemite
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
|
|
mkdir_p buildpath/"src/github.com/TheNewNormal/"
|
|
ln_s buildpath, buildpath/"src/github.com/TheNewNormal/#{name}"
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
args = []
|
|
args << "VERSION=#{version}" if build.stable?
|
|
|
|
system "make", "corectl", *args
|
|
system "make", "documentation/man"
|
|
|
|
bin.install "corectl"
|
|
man1.install Dir["documentation/man/*.1"]
|
|
share.install "cloud-init", "profiles"
|
|
end
|
|
|
|
test do
|
|
assert_match(/#{version}/, shell_output("#{bin}/corectl version"))
|
|
end
|
|
end
|