require "language/go" class Caddy < Formula desc "Alternative general-purpose HTTP/2 web server" homepage "https://caddyserver.com/" url "https://github.com/mholt/caddy/archive/v0.8.2.tar.gz" sha256 "daa06cc4ed4485c42c0cda26e72f6b893227dd4e95c94b97996ef0d1986d32a1" head "https://github.com/mholt/caddy.git" bottle do cellar :any_skip_relocation sha256 "4cfef908af6feae248efde0be8812b001c32cae5b6c4d8b97635788a0482f57e" => :el_capitan sha256 "e0b056b4c8ee4104ba4f97ccb15fc9d30fc2b07858f5ee3aaf8ac361df7c6d7c" => :yosemite sha256 "b76de3fb0ffe6b5d3e3779ecd882d4736d246fcd4d3ca4c3afdb7e638c3674d7" => :mavericks end depends_on "go" => :build go_resource "github.com/BurntSushi/toml" do url "https://github.com/BurntSushi/toml.git", :revision => "a4eecd407cf4129fc902ece859a0114e4cf1a7f4" end go_resource "github.com/dustin/go-humanize" do url "https://github.com/dustin/go-humanize.git", :revision => "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0" end go_resource "github.com/flynn/go-shlex" do url "https://github.com/flynn/go-shlex.git", :revision => "3f9db97f856818214da2e1057f8ad84803971cff" end go_resource "github.com/gorilla/websocket" do url "https://github.com/gorilla/websocket.git", :revision => "5c91b59efa232fa9a87b705d54101832c498a172" end go_resource "github.com/hashicorp/go-syslog" do url "https://github.com/hashicorp/go-syslog.git", :revision => "42a2b573b664dbf281bd48c3cc12c086b17a39ba" end go_resource "github.com/jimstudt/http-authentication" do url "https://github.com/jimstudt/http-authentication.git", :revision => "3eca13d6893afd7ecabe15f4445f5d2872a1b012" end go_resource "github.com/miekg/dns" do url "https://github.com/miekg/dns.git", :revision => "905106d0e8908efdda8d4519c817622c7e8ee8ec" end go_resource "github.com/mitchellh/goamz" do url "https://github.com/mitchellh/goamz.git", :revision => "caaaea8b30ee15616494ee68abd5d8ebbbef05cf" end go_resource "github.com/russross/blackfriday" do url "https://github.com/russross/blackfriday.git", :revision => "006144af03eeeff1037240a71865a9fd61f1c25f" end go_resource "github.com/shurcooL/sanitized_anchor_name" do url "https://github.com/shurcooL/sanitized_anchor_name.git", :revision => "10ef21a441db47d8b13ebcc5fd2310f636973c77" end go_resource "github.com/square/go-jose" do url "https://github.com/square/go-jose.git", :revision => "c3113091ae786777ea1e7ef2489086bcb574891e" end go_resource "github.com/vaughan0/go-ini" do url "https://github.com/vaughan0/go-ini.git", :revision => "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1" end go_resource "github.com/weppos/dnsimple-go" do url "https://github.com/weppos/dnsimple-go.git", :revision => "65c1ca73cb19baf0f8b2b33219b7f57595a3ccb0" end go_resource "github.com/xenolf/lego" do url "https://github.com/xenolf/lego.git", :revision => "da7dd0f7b877b4bd9dd6da52d4348940d1ed664e" end go_resource "golang.org/x/crypto" do url "https://go.googlesource.com/crypto.git", :revision => "1f22c0103821b9390939b6776727195525381532" end go_resource "gopkg.in/natefinch/lumberjack.v2" do url "https://gopkg.in/natefinch/lumberjack.v2.git", :revision => "514cbda263a734ae8caac038dadf05f8f3f9f738" end go_resource "gopkg.in/yaml.v2" do url "https://gopkg.in/yaml.v2.git", :revision => "f7716cbe52baa25d2e9b0d0da546fcf909fc16b4" end def install ENV["GOPATH"] = buildpath ENV["GOOS"] = "darwin" ENV["GOARCH"] = MacOS.prefer_64_bit? ? "amd64" : "386" mkdir_p buildpath/"src/github.com/mholt/" ln_s buildpath, buildpath/"src/github.com/mholt/caddy" Language::Go.stage_deps resources, buildpath/"src" system "go", "build", "-o", bin/"caddy" doc.install %w[README.md LICENSE.txt] end test do begin io = IO.popen("#{bin}/caddy") sleep 2 ensure Process.kill("SIGINT", io.pid) Process.wait(io.pid) end io.read =~ /0\.0\.0\.0:2015/ end end