class Nghttp2 < Formula desc "HTTP/2 C Library" homepage "https://nghttp2.org/" url "https://github.com/tatsuhiro-t/nghttp2/releases/download/v1.0.5/nghttp2-1.0.5.tar.xz" sha256 "8515822015016008ac536de92a7e3652c7dd4f67315ee415f26a30a505f8c821" bottle do sha256 "af759799920fdd56f58f07cc20161b8dcd66a6075b2ce9ea45b8ccd2fcaf3e55" => :yosemite sha256 "e830c92bea11ea86bcbfd684b643975ca7a86c855c873e26d7e0f3b93322aad9" => :mavericks sha256 "68db309dffce5367fe25c5a2ffa6254df884661d4c63ea1b12108fb15f1f8105" => :mountain_lion end head do url "https://github.com/tatsuhiro-t/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", "This is required for enabling the python bindings" depends_on :python => :build if MacOS.version <= :snow_leopard && build.with?("docs") depends_on :python3 => :optional 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 "sphinx" do url "https://pypi.python.org/packages/source/S/Sphinx/Sphinx-1.3.1.tar.gz" sha256 "1a6e5130c2b42d2de301693c299f78cc4bd3501e78b610c08e45efc70e2b5114" end resource "sphinx_rtd_theme" do url "https://pypi.python.org/packages/source/s/sphinx_rtd_theme/sphinx_rtd_theme-0.1.7.tar.gz" sha256 "9a490c861f6cf96a0050c29a92d5d1e01eda02ae6f50760ad5c96a327cdf14e8" end resource "docutils" do url "https://pypi.python.org/packages/source/d/docutils/docutils-0.12.tar.gz" sha256 "c7db717810ab6965f66c8cf0398a98c9d8df982da39b4cd7f162911eb89596fa" end resource "pygments" do url "https://pypi.python.org/packages/source/P/Pygments/Pygments-2.0.2.tar.gz" sha256 "7320919084e6dac8f4540638a46447a3bd730fca172afc17d2c03eed22cf4f51" end resource "jinja2" do url "https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.3.tar.gz" sha256 "2e24ac5d004db5714976a04ac0e80c6df6e47e98c354cb2c0d82f8879d4f8fdb" end resource "markupsafe" do url "https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.23.tar.gz" sha256 "a4ec1aff59b95a14b45eb2e23761a0179e98319da5a7eb76b56ea8cdc7b871c3" end resource "alabaster" do url "https://pypi.python.org/packages/source/a/alabaster/alabaster-0.7.3.tar.gz" sha256 "0703c1ea5a6af0bb6d0cec24708301334949d56ebc7f95c64028d9c66f9d8d5d" end resource "babel" do url "https://pypi.python.org/packages/source/B/Babel/Babel-1.3.tar.gz" sha256 "9f02d0357184de1f093c10012b52e7454a1008be6a5c185ab7a3307aceb1d12e" end resource "snowballstemmer" do url "https://pypi.python.org/packages/source/s/snowballstemmer/snowballstemmer-1.2.0.tar.gz" sha256 "6d54f350e7a0e48903a4e3b6b2cabd1b43e23765fbc975065402893692954191" end resource "six" do url "https://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz" sha256 "e24052411fc4fbd1f672635537c3fc2330d9481b18c0317695b46259512c91d5" end resource "pytz" do url "https://pypi.python.org/packages/source/p/pytz/pytz-2015.2.tar.bz2" sha256 "3e15b416c9a2039c1a51208b2cd3bb4ffd796cd19e601b1d2657afcb77c3dc90" end resource "Cython" do url "https://pypi.python.org/packages/source/C/Cython/cython-0.22.tar.gz" sha256 "14307e7a69af9a0d0e0024d446af7e51cc0e3e4d0dfb10d36ba837e5e5844015" 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 if build.with? "docs" ENV.prepend_create_path "PYTHONPATH", buildpath+"sphinx/lib/python2.7/site-packages" resources.each do |r| r.stage do system "python", *Language::Python.setup_install_args(buildpath/"sphinx") end unless r.name == "Cython" end ENV.prepend_path "PATH", (buildpath/"sphinx/bin") end if build.with? "python3" ENV.prepend_create_path "PYTHONPATH", buildpath/"cython/lib/python#{Language::Python.major_minor_version "python3"}/site-packages" resource("Cython").stage do system "python3", *(Language::Python.setup_install_args(buildpath/"cython") << "--install-scripts=#{buildpath}/cython/bin") end end 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" if build.with? "python3" args << "--enable-python-bindings" << "PYTHON=python3" << "CYTHON=#{buildpath}/cython/bin/cython" << "PYTHON_EXTRA_LDFLAGS=-undefined dynamic_lookup" else args << "--disable-python-bindings" end 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" end test do system bin/"nghttp", "-nv", "https://nghttp2.org" end end