description="nghttp2 is an implementation of HTTP/2 and its header compression algorithm, HPACK."
url="https://github.com/nghttp2"

packager="Spiky <spiky@nutyx.org>"
contributors="Tnut,Spiky"

makedepends=(libxml2 libnghttp2)

name=nghttp2
version=1.50.0

source=( https://github.com/nghttp2/nghttp2/releases/download/v$version/nghttp2-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr     \
            --disable-static  \
            --disable-examples \
            --docdir=/usr/share/doc/nghttp2-$version
make
make DESTDIR=$PKG install
make -C lib DESTDIR=$PKG uninstall
}
