mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
af837b6a15
nghttp3 is an implementation of HTTP/3 mapping over QUIC and QPACK in C. It does not depend on any particular QUIC transport implementation. The HTTP/3 library implements HTTP/3 draft-24. It can exchange basic HTTP request, response and server push, but does not fully implement the specification at the moment. The QPACK library implements QPACK draft-11. It supports dynamic table. WWW: https://github.com/ngtcp2/nghttp3
31 lines
608 B
Makefile
31 lines
608 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nghttp3
|
|
PORTVERSION= 0.1.0.g20020114
|
|
CATEGORIES= www net
|
|
PKGNAMEPREFIX= lib
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= HTTP/3 C Library
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf compiler:c++17-lang libtool pathfix pkgconfig
|
|
|
|
CONFIGURE_ARGS= --enable-lib-only
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_CXXSTD= c++17
|
|
USE_LDCONFIG= yes
|
|
|
|
GH_ACCOUNT= ngtcp2
|
|
GH_TAGNAME= 06f8e38
|
|
USE_GITHUB= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|0.1.0-DEV|${PORTVERSION}|' ${WRKSRC}/configure.ac
|
|
|
|
.include <bsd.port.mk>
|