homebrew-core/Formula/nghttp2.rb

101 lines
3.2 KiB
Ruby

class Nghttp2 < Formula
desc "HTTP/2 C Library"
homepage "https://nghttp2.org/"
url "https://github.com/nghttp2/nghttp2/releases/download/v1.22.0/nghttp2-1.22.0.tar.xz"
sha256 "f14af22f14107901ea6077413f1a387948bf11cdaa4613ba361a0e3e8cacbbe7"
bottle do
sha256 "9a4d19ad04b4739ab25af755c0709dc08c19e6b148d2ae4490ff9fa7fa089b90" => :sierra
sha256 "0ad7bfc8d512c03e56e2c9b15ae54b9c5d69fdd0cdded6e69cfe99cd10277444" => :el_capitan
sha256 "67f5d51723585f2de10cd16ce3c6cfbe04ca4e46e4f894ccdc743664ced0592a" => :yosemite
end
head do
url "https://github.com/nghttp2/nghttp2.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
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 "c-ares"
depends_on "libev"
depends_on "openssl"
depends_on "libevent"
depends_on "jansson"
depends_on "boost"
depends_on "spdylay"
depends_on "jemalloc" => :recommended
resource "Cython" do
url "https://files.pythonhosted.org/packages/b7/67/7e2a817f9e9c773ee3995c1e15204f5d01c8da71882016cac10342ef031b/Cython-0.25.2.tar.gz"
sha256 "f141d1f9c27a07b5a93f7dc5339472067e2d7140d1c5a9e20112a5665ca60306"
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
--with-spdylay
--disable-python-bindings
]
args << "--enable-examples" if build.with? "examples"
args << "--with-xml-prefix=/usr" if MacOS.version > :lion
args << "--without-jemalloc" if build.without? "jemalloc"
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