From df8e612c8b3b216574badc5f731e27d86dcdd74b Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 4 May 2025 13:58:55 -0600 Subject: [PATCH] libxrender: move, update, and fix --- recipes/wip/libs/other/libxrender/recipe.toml | 5 ----- recipes/wip/x11/libxrender/recipe.toml | 21 +++++++++++++++++++ 2 files changed, 21 insertions(+), 5 deletions(-) delete mode 100644 recipes/wip/libs/other/libxrender/recipe.toml create mode 100644 recipes/wip/x11/libxrender/recipe.toml diff --git a/recipes/wip/libs/other/libxrender/recipe.toml b/recipes/wip/libs/other/libxrender/recipe.toml deleted file mode 100644 index c09ffbce1..000000000 --- a/recipes/wip/libs/other/libxrender/recipe.toml +++ /dev/null @@ -1,5 +0,0 @@ -#TODO missing xorg-macros package -[source] -tar = "https://www.x.org/releases/individual/lib/libXrender-0.9.11.tar.xz" -[build] -template = "configure" diff --git a/recipes/wip/x11/libxrender/recipe.toml b/recipes/wip/x11/libxrender/recipe.toml new file mode 100644 index 000000000..f5f671630 --- /dev/null +++ b/recipes/wip/x11/libxrender/recipe.toml @@ -0,0 +1,21 @@ +[source] +tar = "https://www.x.org/releases/individual/lib/libXrender-0.9.12.tar.xz" +blake3 = "900b431ad77835029a88fd0d874bbd0d748ff150b9e0c3841b3ce7a346cf396a" +script = """ +DYNAMIC_INIT +autotools_recursive_regenerate +""" + +[build] +dependencies = [ + "libpthread-stubs", + "libx11", + "libxau", + "libxcb", + "x11proto", +] +template = "custom" +script = """ +DYNAMIC_INIT +cookbook_configure --enable-malloc0returnsnull +"""