fixed peazip new version

This commit is contained in:
2026-04-23 10:34:02 +02:00
parent 95429cd6be
commit 8c1dfc98e7
+9 -3
View File
@@ -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