From 35f7750f2d9d29b614ce40cee04ce065fd185167 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 4 May 2025 13:54:58 -0600 Subject: [PATCH] libxi: move, update, and fix --- recipes/wip/libs/other/libxi/recipe.toml | 5 ----- recipes/wip/x11/libxi/recipe.toml | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 5 deletions(-) delete mode 100644 recipes/wip/libs/other/libxi/recipe.toml create mode 100644 recipes/wip/x11/libxi/recipe.toml diff --git a/recipes/wip/libs/other/libxi/recipe.toml b/recipes/wip/libs/other/libxi/recipe.toml deleted file mode 100644 index 7cabbec2..00000000 --- a/recipes/wip/libs/other/libxi/recipe.toml +++ /dev/null @@ -1,5 +0,0 @@ -#TODO missing dependencies -[source] -tar = "https://www.x.org/releases/individual/lib/libXi-1.8.1.tar.xz" -[build] -template = "configure" diff --git a/recipes/wip/x11/libxi/recipe.toml b/recipes/wip/x11/libxi/recipe.toml new file mode 100644 index 00000000..a1c91570 --- /dev/null +++ b/recipes/wip/x11/libxi/recipe.toml @@ -0,0 +1,24 @@ +[source] +tar = "https://www.x.org/releases/individual/lib/libXi-1.8.2.tar.xz" +blake3 = "8f0acdd884dc928c6c8bc4b6bca1f4c67c726fdb03e30910c09bdb41fd841d3e" +script = """ +DYNAMIC_INIT +autotools_recursive_regenerate +""" + +[build] +dependencies = [ + "libpthread-stubs", + "libx11", + "libxau", + "libxcb", + "libxext", + "libxfixes", + "x11proto", + "xextproto", +] +template = "custom" +script = """ +DYNAMIC_INIT +cookbook_configure --enable-malloc0returnsnull +"""