From a14afb19036feee3521c54dbc86834d3421e087a Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 5 May 2025 20:05:27 -0600 Subject: [PATCH] libxft: update, move, and fix --- recipes/wip/libs/other/libxft/recipe.toml | 9 -------- recipes/wip/x11/libxft/recipe.toml | 27 +++++++++++++++++++++++ 2 files changed, 27 insertions(+), 9 deletions(-) delete mode 100644 recipes/wip/libs/other/libxft/recipe.toml create mode 100644 recipes/wip/x11/libxft/recipe.toml diff --git a/recipes/wip/libs/other/libxft/recipe.toml b/recipes/wip/libs/other/libxft/recipe.toml deleted file mode 100644 index f775c0dfb..000000000 --- a/recipes/wip/libs/other/libxft/recipe.toml +++ /dev/null @@ -1,9 +0,0 @@ -#TODO missing xorg-macros package -[source] -tar = "https://www.x.org/releases/individual/lib/libXft-2.3.8.tar.xz" -[build] -template = "configure" -dependencies = [ - "libxrender", - "libx11", -] diff --git a/recipes/wip/x11/libxft/recipe.toml b/recipes/wip/x11/libxft/recipe.toml new file mode 100644 index 000000000..0574d4c9b --- /dev/null +++ b/recipes/wip/x11/libxft/recipe.toml @@ -0,0 +1,27 @@ +[source] +tar = "https://www.x.org/releases/individual/lib/libXft-2.3.9.tar.xz" +blake3 = "db5b642f7d5f1184d0975db36ae9f9fbd0a0c538a2288930fc034376374e83dc" +script = """ +DYNAMIC_INIT +autotools_recursive_regenerate +""" + +[build] +dependencies = [ + "expat", + "fontconfig", + "freetype2", + "libpng", + "libpthread-stubs", + "libx11", + "libxau", + "libxcb", + "libxrender", + "x11proto", + "zlib", +] +template = "custom" +script = """ +DYNAMIC_INIT +cookbook_configure +"""