From 421c654197bd5245ca60f4bde699fd37dd4beb3b Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 4 May 2025 14:43:00 -0600 Subject: [PATCH] Add xinit --- recipes/wip/x11/xinit/recipe.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 recipes/wip/x11/xinit/recipe.toml diff --git a/recipes/wip/x11/xinit/recipe.toml b/recipes/wip/x11/xinit/recipe.toml new file mode 100644 index 00000000..2ee1557e --- /dev/null +++ b/recipes/wip/x11/xinit/recipe.toml @@ -0,0 +1,22 @@ +[source] +tar = "https://www.x.org/releases/individual/app/xinit-1.4.4.tar.xz" +blake3 = "fe988bbff7c4a950256540ad8a469fed1cdbe11439ba738b9714ee2de16f2a6c" +script = """ +DYNAMIC_INIT +autotools_recursive_regenerate +""" + +[build] +dependencies = [ + "libpthread-stubs", + "libx11", + "libxau", + "libxcb", + "x11proto", +] +template = "custom" +script = """ +DYNAMIC_INIT +export LIBS="-lxcb -lXau" +cookbook_configure +"""