summarylogtreecommitdiffstats
path: root/evewine
blob: 1d2d232c24bf9c1a2d98516b3a81aaeff9f9d750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

source /opt/evesetup/lib/evelauncher.shlib 2>/dev/null || . /opt/evesetup/lib/evelauncher.shlib

check_custom_wine

if [ -x "$WINEPATH/${0#*eve}" ] ;then
    WINECMD=$WINEPATH/${0#*eve}
else
    WINECMD=$CUSTOMWP\ ${0#*eve}
fi

env WINEPREFIX=$WINEPREFIX \
    WINEDEBUG=-all \
    WINEDLLOVERRIDES="mscoree,mshtml,winemenubuilder.exe=d" \
    $WINECMD "$@"