97 lines
3.1 KiB
Ruby
97 lines
3.1 KiB
Ruby
class Nghttp2 < Formula
|
|
desc "HTTP/2 C Library"
|
|
homepage "https://nghttp2.org/"
|
|
url "https://github.com/nghttp2/nghttp2/releases/download/v1.11.1/nghttp2-1.11.1.tar.xz"
|
|
sha256 "865914ff3005df7a67c8d9ac474a900abc7c38d426a8c6fea8ce29dfe86da6ea"
|
|
|
|
bottle do
|
|
sha256 "b8cd0b4947686248414b9b8e9cf5b553bb53285f40534c1ac119fc7047bc3723" => :el_capitan
|
|
sha256 "f3857c4da670a62b70185dfd72252a8272f9a8e02b1a174e382f5b31c3e3cf2c" => :yosemite
|
|
sha256 "a8794a01eaf85023fa6706b8efc6a5e92c6b015e18ad1a3a049955fdc19703fd" => :mavericks
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/nghttp2/nghttp2.git"
|
|
|
|
depends_on "automake" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "libxml2" # Needs xml .m4 available
|
|
end
|
|
|
|
option "with-examples", "Compile and install example programs"
|
|
option "without-docs", "Don't build man pages"
|
|
option "with-python3", "Build python3 bindings"
|
|
|
|
depends_on :python3 => :optional
|
|
depends_on "sphinx-doc" => :build if build.with? "docs"
|
|
depends_on "libxml2" if MacOS.version <= :lion
|
|
depends_on "pkg-config" => :build
|
|
depends_on "cunit" => :build
|
|
depends_on "libev"
|
|
depends_on "openssl"
|
|
depends_on "libevent"
|
|
depends_on "jansson"
|
|
depends_on "boost"
|
|
depends_on "spdylay" => :recommended
|
|
|
|
resource "Cython" do
|
|
url "https://pypi.python.org/packages/b1/51/bd5ef7dff3ae02a2c6047aa18d3d06df2fb8a40b00e938e7ea2f75544cac/Cython-0.24.tar.gz"
|
|
sha256 "6de44d8c482128efc12334641347a9c3e5098d807dd3c69e867fa8f84ec2a3f1"
|
|
end
|
|
|
|
# https://github.com/tatsuhiro-t/nghttp2/issues/125
|
|
# Upstream requested the issue closed and for users to use gcc instead.
|
|
# Given this will actually build with Clang with cxx11, just use that.
|
|
needs :cxx11
|
|
|
|
def install
|
|
ENV.cxx11
|
|
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--disable-silent-rules
|
|
--enable-app
|
|
--with-boost=#{Formula["boost"].opt_prefix}
|
|
--enable-asio-lib
|
|
]
|
|
|
|
args << "--enable-examples" if build.with? "examples"
|
|
args << "--with-spdylay" if build.with? "spdylay"
|
|
args << "--disable-python-bindings"
|
|
|
|
system "autoreconf", "-ivf" if build.head?
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "check"
|
|
|
|
# Currently this is not installed by the make install stage.
|
|
if build.with? "docs"
|
|
system "make", "html"
|
|
doc.install Dir["doc/manual/html/*"]
|
|
end
|
|
|
|
system "make", "install"
|
|
libexec.install "examples" if build.with? "examples"
|
|
|
|
if build.with? "python3"
|
|
pyver = Language::Python.major_minor_version "python3"
|
|
ENV["PYTHONPATH"] = cythonpath = buildpath/"cython/lib/python#{pyver}/site-packages"
|
|
cythonpath.mkpath
|
|
ENV.prepend_create_path "PYTHONPATH", lib/"python#{pyver}/site-packages"
|
|
|
|
resource("Cython").stage do
|
|
system "python3", *Language::Python.setup_install_args(buildpath/"cython")
|
|
end
|
|
|
|
cd "python" do
|
|
system buildpath/"cython/bin/cython", "nghttp2.pyx"
|
|
system "python3", *Language::Python.setup_install_args(prefix)
|
|
end
|
|
end
|
|
end
|
|
|
|
test do
|
|
system bin/"nghttp", "-nv", "https://nghttp2.org"
|
|
end
|
|
end
|