void-packages/srcpkgs/wine/INSTALL
Fotios Valasiadis f8351781a9 wine: update to 10.2
Also add doc about the new WoW64 build option and update the
alert in the script.

Broken wine64 symlink was removed.

Props to @oreo639

Signed-off-by: Fotios Valasiadis <fvalasiad@gmail.com>
2025-03-01 13:45:28 +01:00

16 lines
465 B
Text

# *-*-shell-*-*
# The second to be added is to create all symbolic links.
wine32=usr/bin/wine32
wine64=usr/bin/wine64
case ${ACTION} in
post)
if test -x $wine32 -a -x $wine64; then
ln -sf /usr/lib/wine/x86_64-unix usr/lib32/wine/ 2>/dev/null
ln -sf /usr/lib/wine/x86_64-windows usr/lib32/wine/ 2>/dev/null
ln -sf /usr/lib32/wine/i386-unix usr/lib/wine/ 2>/dev/null
ln -sf /usr/lib32/wine/i386-windows usr/lib/wine/ 2>/dev/null
fi
;;
esac