From 275b23b4478f26f621c5824f0b9ddcaa9ca25c63 Mon Sep 17 00:00:00 2001 From: Jeremy Huntwork Date: Sat, 22 Aug 2026 08:49:45 -0400 Subject: [PATCH] Add mononoki-fonts 1.6 --- recipes/desktop/mononoki-fonts/recipe.kdl | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 recipes/desktop/mononoki-fonts/recipe.kdl diff --git a/recipes/desktop/mononoki-fonts/recipe.kdl b/recipes/desktop/mononoki-fonts/recipe.kdl new file mode 100644 index 00000000..496fe176 --- /dev/null +++ b/recipes/desktop/mononoki-fonts/recipe.kdl @@ -0,0 +1,26 @@ +recipe { + name "mononoki-fonts" + version "1.6" + release 1 + description "mononoki monospace programming font" + url "https://github.com/madmalik/mononoki" + archs "aarch64" "x86_64" + licenses "OFL-1.1" + depends "busybox" +} + +source "https://github.com/madmalik/mononoki/releases/download/${recipe.version}/mononoki.zip" { + blake3 "c3142353efa09035c4568fa6dea1d01c98e9cd1e55139f9ca4b4dcce09412393" +} + +install { + script r#" + dest="${DESTDIR}/usr/share/fonts/mononoki" + mkdir -p "$dest" + cp mononoki-*.otf "$dest/" + "# +} + +package "mononoki-fonts" { + files "usr/share/fonts/" +}