diff options
author | Steffen Nurpmeso <steffen@sdaoden.eu> | 2022-01-15 21:47:33 +0100 |
---|---|---|
committer | Steffen Nurpmeso <steffen@sdaoden.eu> | 2022-01-15 21:47:33 +0100 |
commit | b2ccba6099d0a3423eaf1173c02af3e427838b3c (patch) | |
tree | 50f66fb893b9b3b0f0997bba3bbe885cca687157 /nghttp2-libs | |
parent | 73f48ea5f124c6fe3d01760815e9ca7abca6a107 (diff) | |
download | contrib-b2ccba6099d0a3423eaf1173c02af3e427838b3c.tar.gz contrib-b2ccba6099d0a3423eaf1173c02af3e427838b3c.tar.xz |
Revert "Ãnghttp2-libs: drop port; moved to core"
This reverts commit 73f48ea5f124c6fe3d01760815e9ca7abca6a107.
Diffstat (limited to 'nghttp2-libs')
-rw-r--r-- | nghttp2-libs/.footprint | 17 | ||||
-rw-r--r-- | nghttp2-libs/.signature | 5 | ||||
-rw-r--r-- | nghttp2-libs/Pkgfile | 27 |
3 files changed, 49 insertions, 0 deletions
diff --git a/nghttp2-libs/.footprint b/nghttp2-libs/.footprint new file mode 100644 index 000000000..7d8733922 --- /dev/null +++ b/nghttp2-libs/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/nghttp2/ +-rw-r--r-- root/root usr/include/nghttp2/nghttp2.h +-rw-r--r-- root/root usr/include/nghttp2/nghttp2ver.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libnghttp2.a +-rwxr-xr-x root/root usr/lib/libnghttp2.la +lrwxrwxrwx root/root usr/lib/libnghttp2.so -> libnghttp2.so.14.21.1 +lrwxrwxrwx root/root usr/lib/libnghttp2.so.14 -> libnghttp2.so.14.21.1 +-rwxr-xr-x root/root usr/lib/libnghttp2.so.14.21.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libnghttp2.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/nghttp2/ +-rwxr-xr-x root/root usr/share/nghttp2/fetch-ocsp-response diff --git a/nghttp2-libs/.signature b/nghttp2-libs/.signature new file mode 100644 index 000000000..7f1fe423f --- /dev/null +++ b/nghttp2-libs/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF37aQMC/9/VEGe+vXedAkl/yav2+hq8U9KDkt2DtvEl17pUsUqEbLsGbS+j/+1lX4FYJQJ/PK4J4JCDaupG2zbQ8= +SHA256 (Pkgfile) = 1fb841634d294c5cc3f29fa5c3aac516919130d434e0da3aedb6eb7fc9e61091 +SHA256 (.footprint) = 78c96b121e96ced97ebf7661e58af5f51afc042fedac4d534d3097e7049c2a30 +SHA256 (nghttp2-1.46.0.tar.xz) = 1a68cc4a5732afb735baf50aaac3cb3a6771e49f744bd5db6c49ab5042f12a43 diff --git a/nghttp2-libs/Pkgfile b/nghttp2-libs/Pkgfile new file mode 100644 index 000000000..b14a99333 --- /dev/null +++ b/nghttp2-libs/Pkgfile @@ -0,0 +1,27 @@ +# Description: nghttp2-libs: HTTP/2 libraries (for eg cURL) +# URL: https://nghttp2.org +# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu + +rname=nghttp2 +name=nghttp2-libs +version=1.46.0 +release=1 +source=( + https://github.com/${rname}/${rname}/releases/download/\ +v${version}/${rname}-${version}.tar.xz +) + +build() { + cd ${rname}-${version} + + ./configure --prefix=/usr --enable-lib-only \ + --without-libxml2 --without-mruby --without-neverbleed \ + --without-systemd --without-jemalloc + + make + make DESTDIR="${PKG}" install + + rm -rf "${PKG}"/usr/share/doc "${PKG}"/usr/share/man +} + +# s-sh-mode |