mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
29 lines
517 B
Makefile
29 lines
517 B
Makefile
COMMENT= implementation of the RFC 9000 QUIC protocol
|
|
|
|
V= 1.23.0
|
|
DISTNAME= ngtcp2-$V
|
|
|
|
SHARED_LIBS+= ngtcp2 5.5 # 25.0
|
|
SHARED_LIBS+= ngtcp2_crypto_libressl 0.1 # 2.0
|
|
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= Theo Buehler <tb@openbsd.org>
|
|
|
|
HOMEPAGE= https://nghttp2.org/ngtcp2/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += crypto ssl
|
|
|
|
SITES= https://github.com/ngtcp2/ngtcp2/releases/download/v$V/
|
|
|
|
SEPARATE_BUILD= Yes
|
|
DEBUG_PACKAGES= ${BUILD_PACKAGES}
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-openssl
|
|
|
|
.include <bsd.port.mk>
|