Add freetype and nghttp2 recipe

This commit is contained in:
Jeremy Soller 2020-05-21 20:37:47 -06:00
parent 275e5dbae6
commit f8edf05e54
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1
2 changed files with 20 additions and 0 deletions

View File

@ -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"
]

View File

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