summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/nghttp2/package.py
blob: fcf6d270c7c0e6de9eed2a7c0d00bac46b8733be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class Nghttp2(AutotoolsPackage):
    """nghttp2 is an implementation of HTTP/2 and its header compression
    algorithm HPACK in C."""

    homepage = "https://nghttp2.org/"
    url = "https://github.com/nghttp2/nghttp2/releases/download/v1.26.0/nghttp2-1.26.0.tar.gz"

    version("1.47.0", sha256="62f50f0e9fc479e48b34e1526df8dd2e94136de4c426b7680048181606832b7c")
    version("1.44.0", sha256="3e4824d02ae27eca931e0bb9788df00a26e5fd8eb672cf52cbb89c1463ba16e9")
    version("1.26.0", sha256="daf7c0ca363efa25b2cbb1e4bd925ac4287b664c3d1465f6a390359daa3f0cf1")

    depends_on("pkgconfig", type="build")

    def configure_args(self):
        return [
            "--enable-lib-only",
            "--with-libxml2=no",
            "--with-jansson=no",
            "--with-zlib=no",
            "--with-libevent-openssl=no",
            "--with-libcares=no",
            "--with-openssl=no",
            "--with-libev=no",
            "--with-cunit=no",
            "--with-jemalloc=no",
            "--with-systemd=no",
            "--with-mruby=no",
            "--with-neverbleed=no",
            "--with-boost=no",
        ]