mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 01:06:30 +00:00
c665690d6a
release notes: - https://github.com/nghttp2/nghttp2/releases/tag/v1.52.0
22 lines
853 B
Makefile
22 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.52.0"
|
|
PKG_SHA256="3ea9f0439e60469ad4d39cb349938684ffb929dd7e8e06a7bffe9f9d21f8ba7d"
|
|
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"
|
|
}
|