From 8c1dfc98e73b5518e981807b1b5fbb9c9d7d2145 Mon Sep 17 00:00:00 2001 From: "yuri.kuit" Date: Thu, 23 Apr 2026 10:34:02 +0200 Subject: [PATCH] fixed peazip new version --- v2/fedora-minimal.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/v2/fedora-minimal.sh b/v2/fedora-minimal.sh index a2f7553..7c28204 100755 --- a/v2/fedora-minimal.sh +++ b/v2/fedora-minimal.sh @@ -50,9 +50,15 @@ say_cyan "Installing base dependencies..." install_packages dnf-plugins-core curl wget git flatpak # Enable PeaZip via COPR -say_cyan "Installing PeaZip via official RPM..." -PEAZIP_URL="https://github.com/peazip/PeaZip/releases/latest/download/peazip-10.0.0.x86_64.rpm" -sudo dnf install -y "$PEAZIP_URL" +say_cyan "Installing PeaZip (Qt6) via official RPM..." +PZ_VER="11.0.0" +PZ_FILE="peazip-${PZ_VER}.LINUX.Qt6-1.x86_64.rpm" +PZ_URL="https://github.com/peazip/PeaZip/releases/download/${PZ_VER}/${PZ_FILE}" +curl -L "$PZ_URL" -o "/tmp/$PZ_FILE" +sudo dnf install -y "/tmp/$PZ_FILE" +rm "/tmp/$PZ_FILE" + +say_green "PeaZip ${PZ_VER} (Qt6) installed successfully." ########################## # 2. Main Package Installation