From f8edf05e54a6b771e3bc352677a4c9e60a5d4eeb Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Thu, 21 May 2020 20:37:47 -0600
Subject: [PATCH] Add freetype and nghttp2 recipe

---
 recipes/freetype/recipe.toml |  9 +++++++++
 recipes/nghttp2/recipe.toml  | 11 +++++++++++
 2 files changed, 20 insertions(+)
 create mode 100644 recipes/freetype/recipe.toml
 create mode 100644 recipes/nghttp2/recipe.toml

diff --git a/recipes/freetype/recipe.toml b/recipes/freetype/recipe.toml
new file mode 100644
index 000000000..ce535b7cc
--- /dev/null
+++ b/recipes/freetype/recipe.toml
@@ -0,0 +1,9 @@
+[source]
+tar = "https://download.savannah.gnu.org/releases/freetype/freetype-2.9.1.tar.gz"
+
+[build]
+template = "configure"
+dependencies = [
+    "libpng",
+    "zlib"
+]
diff --git a/recipes/nghttp2/recipe.toml b/recipes/nghttp2/recipe.toml
new file mode 100644
index 000000000..85d288618
--- /dev/null
+++ b/recipes/nghttp2/recipe.toml
@@ -0,0 +1,11 @@
+[source]
+tar = "https://github.com/nghttp2/nghttp2/releases/download/v1.37.0/nghttp2-1.37.0.tar.xz"
+
+[build]
+template = "custom"
+script = """
+COOKBOOK_CONFIGURE_ARGS+=(
+    --enable-lib-only
+)
+cookbook_configure
+"""
-- 
GitLab