diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2025-04-03 21:33:21 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-04-17 18:15:17 +0200 |
commit | a7b2b0522566c82213f6c65b327197662b2593a9 (patch) | |
tree | 92aa205603c161f24a3d941b1da85e93b64745a9 /package/nghttp2/Makefile | |
parent | b3c935bd406085b4bc2f3023430d1c7d87d01503 (diff) |
cog: new package includng dependencies
Diffstat (limited to 'package/nghttp2/Makefile')
-rw-r--r-- | package/nghttp2/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/nghttp2/Makefile b/package/nghttp2/Makefile new file mode 100644 index 000000000..76764db94 --- /dev/null +++ b/package/nghttp2/Makefile @@ -0,0 +1,24 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= nghttp2 +PKG_VERSION:= 1.65.0 +PKG_RELEASE:= 1 +PKG_HASH:= f1b9df5f02e9942b31247e3d415483553bc4ac501c87aa39340b6d19c92a9331 +PKG_DESCR:= http2 library +PKG_SECTION:= libs/misc +PKG_SITES:= https://github.com/nghttp2/nghttp2/releases/download/v1.65.0/ +PKG_OPTS:= dev + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,NGHTTP2,nghttp2,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS))) + +nghttp2-install: + $(INSTALL_DIR) $(IDIR_NGHTTP2)/usr/lib + $(CP) $(WRKINST)/usr/lib/libnghttp2*.so* \ + $(IDIR_NGHTTP2)/usr/lib + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |