From 90886db98e696a0a2b085504e21d78a3c79a2405 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 3 Nov 2025 15:33:38 -0700 Subject: [PATCH] Add freefont --- recipes/fonts/freefont/recipe.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 recipes/fonts/freefont/recipe.toml diff --git a/recipes/fonts/freefont/recipe.toml b/recipes/fonts/freefont/recipe.toml new file mode 100644 index 000000000..a9a67d20d --- /dev/null +++ b/recipes/fonts/freefont/recipe.toml @@ -0,0 +1,14 @@ +[source] +tar="https://ftp.gnu.org/gnu/freefont/freefont-otf-20120503.tar.gz" +blake3="e950397741d84981106cf648fbc143c7827b61d637c86c916232d47aabdfe253" + +[build] +template = "custom" +script = """ +for style in Mono Sans Serif +do + DEST="${COOKBOOK_STAGE}/ui/fonts/${style}/FreeFont" + mkdir -pv "${DEST}" + cp -v "${COOKBOOK_SOURCE}/Free${style}"*".otf" "${DEST}" +done +"""