mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
release notes: - https://github.com/nghttp2/nghttp2/releases/tag/v1.51.0 - https://nghttp2.org/blog/2022/11/13/nghttp2-v1-51-0/
21 lines
853 B
Makefile
21 lines
853 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="nghttp2"
|
|
PKG_VERSION="1.51.0"
|
|
PKG_SHA256="66aa76d97c143f42295405a31413e5e7d157968dad9f957bb4b015b598882e6b"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="http://www.linuxfromscratch.org/blfs/view/cvs/basicnet/nghttp2.html"
|
|
PKG_URL="https://github.com/nghttp2/nghttp2/releases/download/v${PKG_VERSION}/nghttp2-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="nghttp2 is an implementation of HTTP/2 and its header compression algorithm, HPACK."
|
|
|
|
PKG_CMAKE_OPTS_TARGET="-DENABLE_DOC=OFF \
|
|
-DENABLE_FAILMALLOC=OFF \
|
|
-DENABLE_LIB_ONLY=ON \
|
|
-DENABLE_SHARED_LIB=ON \
|
|
-DENABLE_STATIC_LIB=OFF"
|
|
|
|
post_makeinstall_target() {
|
|
rm -r "${INSTALL}/usr/share"
|
|
}
|