99 lines
3.1 KiB
Ruby
99 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.15.0/nghttp2-1.15.0.tar.xz"
|
|
sha256 "317afbef79eec624577d006ea7111cf978d2c88e999a6f336c83b99f924b5e4a"
|
|
|
|
bottle do
|
|
sha256 "a6e7ef94226b0f2a52657f1713b95df76979f3d72e569b23bb487a4919811776" => :sierra
|
|
sha256 "e9ff28814a9c850c3d0a7c58a5d1738eb82d57716230aacb0b3c455f84ea5b1e" => :el_capitan
|
|
sha256 "a734d9eb510f1c73fda1ec2396915a9e7c68ac5fde7a7e7753fe33364092d7a9" => :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 "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://pypi.python.org/packages/c6/fe/97319581905de40f1be7015a0ea1bd336a756f6249914b148a17eefa75dc/Cython-0.24.1.tar.gz"
|
|
sha256 "84808fda00508757928e1feadcf41c9f78e9a9b7167b6649ab0933b76f75e7b9"
|
|
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
|