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 +"""