From 593e3acf6e7d880cfc801ff554e429fd08e02a2b Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 4 May 2025 18:21:05 -0600 Subject: [PATCH] libxrandr: move, update, and fix --- recipes/wip/libs/other/libxrandr/recipe.toml | 5 ---- recipes/wip/x11/libxrandr/recipe.toml | 24 ++++++++++++++++++++ 2 files changed, 24 insertions(+), 5 deletions(-) delete mode 100644 recipes/wip/libs/other/libxrandr/recipe.toml create mode 100644 recipes/wip/x11/libxrandr/recipe.toml diff --git a/recipes/wip/libs/other/libxrandr/recipe.toml b/recipes/wip/libs/other/libxrandr/recipe.toml deleted file mode 100644 index c19cfada..00000000 --- a/recipes/wip/libs/other/libxrandr/recipe.toml +++ /dev/null @@ -1,5 +0,0 @@ -#TODO missing xorg-macros package -[source] -tar = "https://www.x.org/releases/individual/lib/libXrandr-1.5.4.tar.xz" -[build] -template = "configure" diff --git a/recipes/wip/x11/libxrandr/recipe.toml b/recipes/wip/x11/libxrandr/recipe.toml new file mode 100644 index 00000000..9e6d29ea --- /dev/null +++ b/recipes/wip/x11/libxrandr/recipe.toml @@ -0,0 +1,24 @@ +[source] +tar = "https://www.x.org/releases/individual/lib/libXrandr-1.5.4.tar.xz" +blake3 = "c107a47d9c4329996d74d7a1ab8d254a2cf3aecea1575d7e146da9a06b762081" +script = """ +DYNAMIC_INIT +autotools_recursive_regenerate +""" + +[build] +dependencies = [ + "libpthread-stubs", + "libx11", + "libxau", + "libxcb", + "libxext", + "libxrender", + "x11proto", + "xextproto", +] +template = "custom" +script = """ +DYNAMIC_INIT +cookbook_configure --enable-malloc0returnsnull +"""