summaryrefslogtreecommitdiff
path: root/libs/nghttp2
diff options
context:
space:
mode:
Diffstat (limited to 'libs/nghttp2')
-rw-r--r--libs/nghttp2/.footprint12
-rw-r--r--libs/nghttp2/.signature6
-rw-r--r--libs/nghttp2/MAKEPKG35
3 files changed, 53 insertions, 0 deletions
diff --git a/libs/nghttp2/.footprint b/libs/nghttp2/.footprint
new file mode 100644
index 0000000..92eb1b5
--- /dev/null
+++ b/libs/nghttp2/.footprint
@@ -0,0 +1,12 @@
+drwxr-xr-x root/root usr/
+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.so.14.29.5
+lrwxrwxrwx root/root usr/lib/libnghttp2.so -> libnghttp2.so.14.29.5
+lrwxrwxrwx root/root usr/lib/libnghttp2.so.14 -> libnghttp2.so.14.29.5
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libnghttp2.pc
diff --git a/libs/nghttp2/.signature b/libs/nghttp2/.signature
new file mode 100644
index 0000000..e8a1c60
--- /dev/null
+++ b/libs/nghttp2/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mDl+ciH66KfV/i1Jd5V8+7kOLo5HF+2d6NmMxxeRIqHKZSYkXoS1lPHaxEa6X0jmjbKFv9ib6HmLhJ7QuJ5HJA0=
+
+SHA256 (MAKEPKG) = 53b19e4d349cc0cf08e0984db0eb4fc144befb0f70b02bb447366831d2445f15
+SHA256 (.footprint) = 18d489ae773fc09be36da90ecb4cf538e079717555bce5362104fde61b257427
+SHA256 (nghttp2-1.70.0.tar.xz) = e05cb1388eaca3830aded4ccf20044b6e1ac1a61411dcca11b0437c4285c8bc2
+SHA256 (nghttp2#1.70.0-1.pkg.tar.gz) = 9668134d1dcbaae0d531a6f15a8bf1f54ee2701110f5fb3cde0609d9c7438e3b
diff --git a/libs/nghttp2/MAKEPKG b/libs/nghttp2/MAKEPKG
new file mode 100644
index 0000000..cc1b451
--- /dev/null
+++ b/libs/nghttp2/MAKEPKG
@@ -0,0 +1,35 @@
+#!/bin/mkpkg
+# description: HTTP/2 C Library and tools
+# url: https://github.com/nghttp2/nghttp2/
+
+name=nghttp2
+version=1.70.0
+release=1
+source=(
+ https://github.com/nghttp2/nghttp2/releases/download/v$version/nghttp2-$version.tar.xz
+)
+
+sha256sums=(
+ "e05cb1388eaca3830aded4ccf20044b6e1ac1a61411dcca11b0437c4285c8bc2"
+)
+
+build() {
+ cd nghttp2-$version
+
+ ./configure \
+ --prefix=/usr \
+ --enable-lib-only \
+ --disable-examples \
+ --disable-python-bindings
+ make
+ make -C lib DESTDIR=$PKG install
+
+ rm -f $PKG/usr/lib/*.la
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh