From 6a92383eccbd3733e8fa869360a0d4dff4803921 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 10 May 2025 17:50:58 -0600 Subject: [PATCH] libxslt: update and fix --- recipes/wip/libs/other/libxslt/recipe.toml | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/recipes/wip/libs/other/libxslt/recipe.toml b/recipes/wip/libs/other/libxslt/recipe.toml index 272d5c53..b8458e0d 100644 --- a/recipes/wip/libs/other/libxslt/recipe.toml +++ b/recipes/wip/libs/other/libxslt/recipe.toml @@ -1,5 +1,20 @@ -#TODO require Python 3.10 [source] -tar = "https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.38.tar.xz" +tar = "https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.43.tar.xz" +blake3 = "6c529acc02344fe48377810debadaee8eb0511a5553a8b7bea685d5282ab00cb" +script = """ +DYNAMIC_INIT +autotools_recursive_regenerate +""" + [build] -template = "configure" +dependencies = [ + "libxml2", + "xz", + "zlib", +] +template = "custom" +script = """ +DYNAMIC_INIT +export CFLAGS="-llzma -lz" +cookbook_configure --without-python +"""