mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-15 05:37:01 +02:00
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>
16 lines
465 B
Text
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
|