Skip to content

Commit

Permalink
Updated load_7zip to install latest version and added load_7zip64
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisNekoGuy committed Nov 20, 2024
1 parent a06ea87 commit 2009797
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions src/winetricks
Original file line number Diff line number Diff line change
Expand Up @@ -15598,16 +15598,33 @@ load_3m_library()
#----------------------------------------------------------------

w_metadata 7zip apps \
title="7-Zip 19.00" \
title="7-Zip 24.08" \
publisher="Igor Pavlov" \
year="2019" \
year="2024" \
media="download" \
file1="7z1900.exe" \
file1="7z2408.exe" \
installed_exe1="${W_PROGRAMS_X86_WIN}/7-Zip/7zFM.exe"

load_7zip()
{
w_download https://www.7-zip.org/a/7z1900.exe 759aa04d5b03ebeee13ba01df554e8c962ca339c74f56627c8bed6984bb7ef80
w_download https://www.7-zip.org/a/7z2408.exe faa87251336d864b877a5e6c3e9c9a5e250318be2fdfc8a42ceadb3a956e0405
w_try_cd "${W_CACHE}/${W_PACKAGE}"
w_try "${WINE}" "${file1}" ${W_OPT_UNATTENDED:+/S}
}

#----------------------------------------------------------------

w_metadata 7zip64 apps \
title="7-Zip 24.08 (64-bit)" \
publisher="Igor Pavlov" \
year="2024" \
media="download" \
file1="7z2408-x64.exe" \
installed_exe1="${W_PROGRAMS_WIN}/7-Zip/7zFM.exe"

load_7zip64()
{
w_download https://www.7-zip.org/a/7z2408-x64.exe 67cb9d3452c9dd974b04f4a5fd842dbcba8184f2344ff72e3662d7cdb68b099b
w_try_cd "${W_CACHE}/${W_PACKAGE}"
w_try "${WINE}" "${file1}" ${W_OPT_UNATTENDED:+/S}
}
Expand Down

0 comments on commit 2009797

Please sign in to comment.