homebrew-core/Formula/http-parser.rb
2015-09-12 01:56:58 +08:00

33 lines
1.2 KiB
Ruby

class HttpParser < Formula
desc "HTTP request/response parser for c"
homepage "https://github.com/joyent/http-parser"
url "https://github.com/joyent/http-parser/archive/v2.5.0.tar.gz"
sha256 "e3b4ba58f4e6ee5fbec781df020e5cb74c3a799a07f059e1e125127a0b801481"
bottle do
cellar :any
revision 1
sha256 "d58b73f7cdbd774611695502185c93075fe52742d81069631f95e8c3540210ea" => :el_capitan
sha256 "51cc550432f06a5ffa4f5566492621fc9c6243d62dd0155f94ec62e333d4692d" => :yosemite
sha256 "438a453e858e97f4b4bafb766ad2a85cab54f4fecfcae00e12dc6905e872e357" => :mavericks
sha256 "e3c153213c8f2df6340e1e945920097d52ad3b5f1a2ca882c18ff6c7f6c3d2a5" => :mountain_lion
end
depends_on "coreutils" => :build
patch do
url "https://patch-diff.githubusercontent.com/raw/joyent/http-parser/pull/247.diff"
sha256 "0f081d0cbf44575b2db2889b318245e692706b756725ba64d1277f571c8b921f"
end
def install
system "make", "install", "PREFIX=#{prefix}", "INSTALL=ginstall"
share.install "test.c"
end
test do
# Set HTTP_PARSER_STRICT=0 to bypass "tab in URL" test on OS X
system ENV.cc, share/"test.c", "-o", "test", "-lhttp_parser", "-DHTTP_PARSER_STRICT=0"
system "./test"
end
end