From 8e7074e3695ce29a79cf86b29d19b95815706b1c Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Tue, 9 Apr 2019 17:57:08 -0600
Subject: [PATCH] Add nghttp2

---
 recipes/nghttp2/recipe.sh | 40 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 recipes/nghttp2/recipe.sh

diff --git a/recipes/nghttp2/recipe.sh b/recipes/nghttp2/recipe.sh
new file mode 100644
index 000000000..1b73275d4
--- /dev/null
+++ b/recipes/nghttp2/recipe.sh
@@ -0,0 +1,40 @@
+VERSION=1.37.0
+TAR=https://github.com/nghttp2/nghttp2/releases/download/v${VERSION}/nghttp2-${VERSION}.tar.xz
+
+function recipe_version {
+    echo "$VERSION"
+    skip=1
+}
+
+function recipe_update {
+    echo "skipping update"
+    skip=1
+}
+
+function recipe_build {
+    ./configure \
+        --build="${BUILD}" \
+        --host="${HOST}" \
+        --prefix="" \
+        --enable-lib-only
+    make -j"$(nproc)"
+    skip=1
+}
+
+function recipe_test {
+    echo "skipping test"
+    skip=1
+}
+
+function recipe_clean {
+    make clean
+    skip=1
+}
+
+function recipe_stage {
+    dest="$(realpath $1)"
+    make install DESTDIR="$dest"
+    find "$dest/lib" -exec ${HOST}-strip {} ';' 2> /dev/null
+    rm -f "$dest/lib/"*.la
+    skip=1
+}
-- 
GitLab