2015-08-01 05:36:23 +00:00
|
|
|
require "language/go"
|
|
|
|
|
|
|
|
class Fugu < Formula
|
|
|
|
desc "Docker command wrapper."
|
|
|
|
homepage "https://github.com/mattes/fugu"
|
|
|
|
url "https://github.com/mattes/fugu/archive/v1.1.1.tar.gz"
|
|
|
|
sha256 "94ec61037c3afa1267ea990ffd03ba1d0d1628926b3fdde0133fece36fa81929"
|
|
|
|
|
2015-08-06 19:05:28 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha256 "ea7fc32f2683bd6902bdddb3bcd9a51bf40fce495e3aeb5d52e493d57a928c9b" => :yosemite
|
|
|
|
sha256 "7f0774ebb3abec005f5c0e44cb3a2e574d3382ee33bf43ae6b4981e1ab80907a" => :mavericks
|
|
|
|
sha256 "547f6aa26659e6f13a2dd0b83b1d95e375f905d52a5447bf797a4395386e37c0" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2015-08-01 05:36:23 +00:00
|
|
|
depends_on "go" => :build
|
2015-11-14 10:29:04 +00:00
|
|
|
depends_on "godep" => :build
|
2015-08-01 05:36:23 +00:00
|
|
|
depends_on "docker" => :recommended
|
|
|
|
|
|
|
|
go_resource "github.com/kr/fs" do
|
|
|
|
url "https://github.com/kr/fs.git", :revision => "2788f0dbd16903de03cb8186e5c7d97b69ad387b"
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
2015-11-14 10:29:04 +00:00
|
|
|
ENV["GOPATH"] = buildpath
|
2015-08-01 05:36:23 +00:00
|
|
|
mkdir_p buildpath/"src/github.com/mattes/"
|
|
|
|
ln_s buildpath, buildpath/"src/github.com/mattes/fugu"
|
|
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
|
|
|
|
cd buildpath/"fugu" do
|
2015-11-14 10:29:04 +00:00
|
|
|
system "godep", "go", "build", "-o", bin/"fugu", "main.go", "usage.go", "version.go"
|
2015-08-01 05:36:23 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"fugu.yml").write <<-EOS.undent
|
|
|
|
label1:
|
|
|
|
image: ubuntu
|
|
|
|
name: my-ubuntu
|
|
|
|
label2:
|
|
|
|
name: another-ubuntu
|
|
|
|
EOS
|
|
|
|
assert_match /label2/, shell_output("#{bin}/fugu show-labels --source file://#{testpath}/fugu.yml")
|
|
|
|
end
|
|
|
|
end
|