From cf3b6a1401d89af5829dc3a74c15c5db9749a8dd Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 4 May 2025 14:24:45 -0600 Subject: [PATCH] Add twm --- recipes/wip/x11/twm/recipe.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 recipes/wip/x11/twm/recipe.toml diff --git a/recipes/wip/x11/twm/recipe.toml b/recipes/wip/x11/twm/recipe.toml new file mode 100644 index 000000000..1648e69f4 --- /dev/null +++ b/recipes/wip/x11/twm/recipe.toml @@ -0,0 +1,27 @@ +[source] +tar = "https://www.x.org/releases/individual/app/twm-1.0.13.tar.xz" +blake3 = "50acf2123537a739dcaff50e1ae9b38d7e117a2d07cd3a6b550dcafdc52ff9fc" +script = """ +DYNAMIC_INIT +autotools_recursive_regenerate +""" + +[build] +dependencies = [ + "libice", + "libpthread-stubs", + "libsm", + "libx11", + "libxau", + "libxcb", + "libxext", + "libxmu", + "libxt", + "x11proto", +] +template = "custom" +script = """ +DYNAMIC_INIT +export LIBS="-lxcb -lXau" +cookbook_configure +"""