aports/main/nghttp2/APKBUILD
2025-03-03 16:06:25 +00:00

76 lines
1.8 KiB
Text

# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=nghttp2
pkgver=1.65.0
pkgrel=0
pkgdesc="HTTP/2 C client, server and proxy"
url="https://nghttp2.org"
arch="all"
license="MIT"
makedepends_host="libev-dev openssl-dev>3 zlib-dev c-ares-dev"
checkdepends="cunit-dev"
subpackages="$pkgname-static $pkgname-doc $pkgname-dev $pkgname-libs"
source="https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz"
# secfixes:
# 1.57.0-r0:
# - CVE-2023-44487
# 1.41.0-r0:
# - CVE-2020-11080
# 1.39.2-r0:
# - CVE-2019-9511
# - CVE-2019-9513
check() {
make check
# integration tests require go, which is only available
# in community at the moment of writing. Disabling until
# go is moved into main
# cd "integration-tests"
# make itprep
# make it
}
build() {
if [ -z "$BOOTSTRAP" ]; then
# fat to keep static non-lto too for non-gcc
# -20% size
export CFLAGS="$CFLAGS -ffat-lto-objects -flto=auto"
export CXXFLAGS="$CXXFLAGS -ffat-lto-objects -flto=auto"
fi
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
--disable-examples \
--disable-http3 \
--disable-werror \
--enable-app \
--enable-static \
--enable-threads \
--with-libcares \
--with-libev \
--with-openssl \
--without-jansson \
--without-jemalloc \
--without-libbpf \
--without-libnghttp3 \
--without-libngtcp2 \
--without-libxml2 \
--without-mruby \
--without-neverbleed \
--without-systemd \
"$(want_check && echo --with-cunit || echo --without-cunit)"
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
e1ef685a425017474ea0412c8ad13a217a45a320322b3aee48e646be21457d9b1f374abb9f681f47595a0ad8feb07d076bd0aa3279d35c5c9b5b8c921d8dd39e nghttp2-1.65.0.tar.xz
"