Skip to content

Commit 418f280

Browse files
authored
7zip: update to 24.09 and added 64-bit support
1 parent df750bc commit 418f280

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

Diff for: src/winetricks

+10-4
Original file line numberDiff line numberDiff line change
@@ -15731,14 +15731,20 @@ w_metadata 7zip apps \
1573115731
publisher="Igor Pavlov" \
1573215732
year="2024" \
1573315733
media="download" \
15734-
file1="7z2408.exe" \
15735-
installed_exe1="${W_PROGRAMS_X86_WIN}/7-Zip/7zFM.exe"
15734+
file1="7z2409.exe" \
15735+
installed_exe1="${W_PROGRAMS_WIN}/7-Zip/7zFM.exe"
1573615736

1573715737
load_7zip()
1573815738
{
15739-
w_download https://www.7-zip.org/a/7z2409.exe e35e4374100b52e697e002859aefdd5533bcbf4118e5d2210fae6de318947c41
15739+
if [ "${W_ARCH}" = "win32" ]; then
15740+
w_download https://www.7-zip.org/a/7z2409.exe e35e4374100b52e697e002859aefdd5533bcbf4118e5d2210fae6de318947c41
15741+
_W_installer_exe=7z2409.exe
15742+
elif [ "${W_ARCH}" = "win64" ]; then
15743+
w_download https://www.7-zip.org/a/7z2409-x64.exe bdd1a33de78618d16ee4ce148b849932c05d0015491c34887846d431d29f308e
15744+
_W_installer_exe=7z2409-x64.exe
15745+
fi
1574015746
w_try_cd "${W_CACHE}/${W_PACKAGE}"
15741-
w_try "${WINE}" "${file1}" ${W_OPT_UNATTENDED:+/S}
15747+
w_try "${WINE}" "${_W_installer_exe}" ${W_OPT_UNATTENDED:+/S}
1574215748
}
1574315749

1574415750
#----------------------------------------------------------------

0 commit comments

Comments
 (0)