From 60bf9b54702434ba9090f84ef8594758d8533601 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Wed, 6 May 2026 23:11:19 -0300 Subject: [PATCH] Add "autotools" meta-package for faster installation --- config/x86_64/ci.toml | 1 + recipes/groups/autotools/recipe.toml | 5 +++++ recipes/groups/dev-essential/recipe.toml | 3 +-- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 recipes/groups/autotools/recipe.toml diff --git a/config/x86_64/ci.toml b/config/x86_64/ci.toml index 88a4a4a4..0f2c29eb 100644 --- a/config/x86_64/ci.toml +++ b/config/x86_64/ci.toml @@ -14,6 +14,7 @@ prompt = false # Meta-packages below auto-test = {} +autotools = {} dev-essential = {} dev-redox = {} llvm21-common = {} diff --git a/recipes/groups/autotools/recipe.toml b/recipes/groups/autotools/recipe.toml new file mode 100644 index 00000000..521ebc6c --- /dev/null +++ b/recipes/groups/autotools/recipe.toml @@ -0,0 +1,5 @@ +[package] +dependencies = [ + "autoconf", + "automake", +] diff --git a/recipes/groups/dev-essential/recipe.toml b/recipes/groups/dev-essential/recipe.toml index eb24f570..c1102583 100644 --- a/recipes/groups/dev-essential/recipe.toml +++ b/recipes/groups/dev-essential/recipe.toml @@ -1,7 +1,6 @@ [package] dependencies = [ - "autoconf", - "automake", + "autotools", "gcc13", "gcc13.cxx", "gnu-binutils",