From fc8f03efec9fc6f94a0a881a5709f93533140378 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 4 May 2025 13:54:31 -0600 Subject: [PATCH] libxfixes: move, update, and fix --- recipes/wip/libs/other/libxfixes/recipe.toml | 10 --------- recipes/wip/x11/libxfixes/recipe.toml | 22 ++++++++++++++++++++ 2 files changed, 22 insertions(+), 10 deletions(-) delete mode 100644 recipes/wip/libs/other/libxfixes/recipe.toml create mode 100644 recipes/wip/x11/libxfixes/recipe.toml diff --git a/recipes/wip/libs/other/libxfixes/recipe.toml b/recipes/wip/libs/other/libxfixes/recipe.toml deleted file mode 100644 index 571281645..000000000 --- a/recipes/wip/libs/other/libxfixes/recipe.toml +++ /dev/null @@ -1,10 +0,0 @@ -#TODO missing dependencies -[source] -tar = "https://www.x.org/releases/individual/lib/libXfixes-6.0.1.tar.xz" -[build] -template = "configure" -dependencies = [ - "x11proto", - "libx11", - "libxext", -] diff --git a/recipes/wip/x11/libxfixes/recipe.toml b/recipes/wip/x11/libxfixes/recipe.toml new file mode 100644 index 000000000..c506e4f81 --- /dev/null +++ b/recipes/wip/x11/libxfixes/recipe.toml @@ -0,0 +1,22 @@ +[source] +tar = "https://www.x.org/releases/individual/lib/libXfixes-6.0.1.tar.xz" +blake3 = "ccbae58717aa81f1ef52a2e6cbb7c57553a98b93f5a7a6f8a78e793a3a0c7f78" +script = """ +DYNAMIC_INIT +autotools_recursive_regenerate +""" + +[build] +dependencies = [ + "libpthread-stubs", + "libx11", + "libxau", + "libxcb", + "x11proto", + "xextproto", +] +template = "custom" +script = """ +DYNAMIC_INIT +cookbook_configure +"""