From 58d25e995901c3c0d0daf40635953c2df0b6e087 Mon Sep 17 00:00:00 2001 From: Howard Wu Date: Thu, 16 Mar 2023 20:23:02 +0800 Subject: [PATCH] Remove dependency `setools` --- docs/README.md | 8 ++++---- scripts/install_deps.sh | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/README.md b/docs/README.md index c9dc6fb..76c6938 100644 --- a/docs/README.md +++ b/docs/README.md @@ -8,10 +8,10 @@ The following dependencies are required: - | DistrOS | | | | | - |:-------------------:|-------------------------------------------------------------------------------------------------|-------------------|------------|------------| - | Debian | `lzip wine winetricks patchelf e2fsprogs aria2 python3 python3-pip aria2 p7zip-full attr unzip` | `setools` | `whiptail` | `xz-utils` | - | openSUSE Tumbleweed | Same as above | `setools-console` | `dialog` | `xz` | + | DistrOS | | | | + |:-------------------:|-------------------------------------------------------------------------------------------------|------------|------------| + | Debian | `lzip wine winetricks patchelf e2fsprogs aria2 python3 python3-pip aria2 p7zip-full attr unzip` | `whiptail` | `xz-utils` | + | openSUSE Tumbleweed | Same as above | `dialog` | `xz` | The following components need to be installed using `winetricks`: `msxml6` diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 90e769b..a60eed2 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -39,7 +39,6 @@ require_su() { echo "Checking and ensuring dependencies" check_dependencies() { command -v whiptail >/dev/null 2>&1 || command -v dialog >/dev/null 2>&1 || NEED_INSTALL+=("whiptail") - command -v seinfo >/dev/null 2>&1 || NEED_INSTALL+=("setools") command -v lzip >/dev/null 2>&1 || NEED_INSTALL+=("lzip") if [ ! -f /proc/sys/fs/binfmt_misc/WSLInterop ] || [ "$(id -u)" == "0" ]; then command -v wine64 >/dev/null 2>&1 || NEED_INSTALL+=("wine")