From 10ad2f981b58427795f4aff72e4411130e29465c Mon Sep 17 00:00:00 2001 From: Cappy Ishihara Date: Wed, 23 Oct 2024 02:50:00 +0700 Subject: [PATCH] fix Steam package --- anda/games/steam/anda.hcl | 1 + anda/games/steam/steam.spec | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/anda/games/steam/anda.hcl b/anda/games/steam/anda.hcl index 26bb79e887..9aa4d9d4f6 100644 --- a/anda/games/steam/anda.hcl +++ b/anda/games/steam/anda.hcl @@ -1,4 +1,5 @@ project pkg { + arches = ["x86_64"] rpm { spec = "steam.spec" } diff --git a/anda/games/steam/steam.spec b/anda/games/steam/steam.spec index f9d33f4b3d..335f84b7d9 100644 --- a/anda/games/steam/steam.spec +++ b/anda/games/steam/steam.spec @@ -8,7 +8,7 @@ %define arch_dep() \ %ifarch x86_64 \ Requires: %1 \ -Requires: %1.i686 \ +Requires: %1(x86-32) \ %else \ Requires: %1 \ %endif @@ -19,7 +19,7 @@ Requires: %1 \ %define arch_recommends() \ %ifarch x86_64 \ Recommends: %1 \ -Recommends: %1.i686 \ +Recommends: %1(x86-32) \ %else \ Recommends: %1 \ %endif