Skip to content

Commit

Permalink
dbgview: new verb
Browse files Browse the repository at this point in the history
  • Loading branch information
rhabacker authored and austin987 committed Apr 30, 2024
1 parent 2f4fc26 commit be81938
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions files/verbs/apps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ cmake CMake 2.8 (Kitware, 2013) [downloadable]
colorprofile Standard RGB color profile (Microsoft, 2005) [downloadable]
controlpad MS ActiveX Control Pad (Microsoft, 1997) [downloadable]
controlspy Control Spy 6 (Microsoft, 2005) [downloadable]
dbgview Debug monitor (Mark Russinovich, 2019) [downloadable]
depends Dependency Walker (Steve P. Miller, 2006) [downloadable]
dotnet20sdk MS .NET 2.0 SDK (Microsoft, 2006) [downloadable]
dxsdk_aug2006 MS DirectX SDK, August 2006 (developers only) (Microsoft, 2006) [downloadable]
Expand Down
19 changes: 19 additions & 0 deletions src/winetricks
Original file line number Diff line number Diff line change
Expand Up @@ -7131,6 +7131,25 @@ load_dsdmo()

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

w_metadata dbgview apps \
title="Debug monitor" \
publisher="Mark Russinovich" \
year="2019" \
media="download" \

load_dbgview()
{
w_download https://download.sysinternals.com/files/DebugView.zip 05cfa3dde3d98eb333d0582556f4f520e6207fe8d335bd1e910d90692798f913
w_try_unzip "${W_TMP}" "${W_CACHE}"/dbgview/DebugView.zip
if [ "${W_ARCH}" = "win64" ]; then
w_try cp "${W_TMP}"/dbgview64.exe "${W_WINDIR_UNIX}"
fi
w_try cp "${W_TMP}"/Dbgview.exe "${W_WINDIR_UNIX}"
w_try cp "${W_TMP}"/Dbgview.chm "${W_WINDIR_UNIX}"
}

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

w_metadata depends apps \
title="Dependency Walker" \
publisher="Steve P. Miller" \
Expand Down

0 comments on commit be81938

Please sign in to comment.