2020-08-29 18:50:25 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=nghttp2
|
2023-10-14 03:31:16 +00:00
|
|
|
PKG_VERSION:=1.57.0
|
2020-08-29 18:50:25 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
|
|
PKG_SOURCE_URL:=https://github.com/nghttp2/nghttp2/releases/download/v$(PKG_VERSION)
|
2023-10-14 03:31:16 +00:00
|
|
|
PKG_HASH:=9210b0113109f43be526ac5835d58a701411821a4d39e155c40d67c40f47a958
|
2020-08-29 18:50:25 +00:00
|
|
|
|
2020-11-25 04:48:05 +00:00
|
|
|
PKG_MAINTAINER:=Hans Dedecker <dedeckeh@gmail.com>
|
2020-08-29 18:50:25 +00:00
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=COPYING
|
2020-11-25 04:48:05 +00:00
|
|
|
|
2020-08-29 18:50:25 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2021-06-10 23:27:06 +00:00
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
2020-08-29 18:50:25 +00:00
|
|
|
|
|
|
|
define Package/libnghttp2
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Library implementing the framing layer of HTTP/2
|
|
|
|
ABI_VERSION:=14
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libnghttp2/description
|
|
|
|
C library implementing the framing layer of the HTTP/2 protocol. It can be used to build a HTTP/2-capable HTTP client or server
|
|
|
|
endef
|
|
|
|
|
|
|
|
CMAKE_OPTIONS += \
|
|
|
|
-DENABLE_LIB_ONLY=ON
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(call Build/InstallDev/cmake,$(1))
|
|
|
|
$(SED) 's,/usr/include,$$$${prefix}/include,g' $(1)/usr/lib/pkgconfig/libnghttp2.pc
|
|
|
|
$(SED) 's,/usr/lib,$$$${prefix}/lib,g' $(1)/usr/lib/pkgconfig/libnghttp2.pc
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libnghttp2/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libnghttp2.so.* $(1)/usr/lib
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libnghttp2))
|