websocketd 0.2.11 (new formula)

Closes Homebrew/homebrew#45232.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Ben Tranter 2015-10-21 19:13:32 -04:00 committed by Dominyk Tiller
parent 14f6696490
commit c206e1e117

45
Formula/websocketd.rb Normal file
View file

@ -0,0 +1,45 @@
require "language/go"
class Websocketd < Formula
desc "WebSockets the Unix way"
homepage "http://websocketd.com"
url "https://github.com/joewalnes/websocketd/archive/v0.2.11.tar.gz"
sha256 "b67a07248cd8675344e4a8553b1ea6434d6789a3990aafe5ecb98d5210f85071"
depends_on "go" => :build
go_resource "github.com/joewalnes/websocketd" do
url "https://github.com/joewalnes/websocketd.git",
:revision => "4ec0493c99e8c1885e524f6af6c1e41250e36202"
end
go_resource "golang.org/x/net" do
url "https://go.googlesource.com/net.git",
:revision => "db8e4de5b2d6653f66aea53094624468caad15d2"
end
def install
ENV["GOBIN"] = bin
ENV["GOPATH"] = buildpath
ENV["GOHOME"] = buildpath
mkdir_p buildpath/"src/github.com/joewalnes/"
ln_sf buildpath, buildpath/"src/github.com/joewalnes/websocketd"
Language::Go.stage_deps resources, buildpath/"src"
system "go", "build", "-ldflags", "-X main.version #{version}", "-o", bin/"websocketd", "main.go", "config.go", "help.go", "version.go"
man1.install "release/websocketd.man" => "websocketd.1"
end
test do
pid = Process.fork { exec "#{bin}/websocketd", "--port=8080", "echo", "ok" }
sleep 2
begin
assert_equal("404 page not found\n", shell_output("curl -s http://localhost:8080"))
ensure
Process.kill 9, pid
Process.wait pid
end
end
end