Skip to content

Commit

Permalink
depends: new verb
Browse files Browse the repository at this point in the history
  • Loading branch information
rhabacker committed Apr 4, 2024
1 parent f87bf9e commit 4ecd732
Show file tree
Hide file tree
Showing 2 changed files with 23 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]
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]
dxsdk_jun2010 MS DirectX SDK, June 2010 (developers only) (Microsoft, 2010) [downloadable]
Expand Down
22 changes: 22 additions & 0 deletions src/winetricks
Original file line number Diff line number Diff line change
Expand Up @@ -7106,6 +7106,28 @@ load_dsdmo()

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

w_metadata depends apps \
title="Dependency Walker (developers only)" \
publisher="Steve P. Miller" \
year="2006" \
media="download" \

load_depends()
{
if [ "${W_ARCH}" = "win64" ] ; then
w_download https://www.dependencywalker.com/depends22_x64.zip
w_try_unzip "${W_TMP}" "${W_CACHE}"/depends/depends22_x64.zip
else
w_download https://www.dependencywalker.com/depends22_x86.zip
w_try_unzip "${W_TMP}" "${W_CACHE}"/depends/depends22_x86.zip
fi
w_try cp "${W_TMP}"/depends.* "${W_DRIVE_C}/windows"
# depends.exe uses mfc42
w_call mfc42
}

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

w_metadata dxsdk_aug2006 apps \
title="MS DirectX SDK, August 2006 (developers only)" \
publisher="Microsoft" \
Expand Down

0 comments on commit 4ecd732

Please sign in to comment.