PW_UBC 914 Bytes
Newer Older
1
#!/usr/bin/env bash
castro-fidel's avatar
castro-fidel committed
2
# Author: Castro-Fidel (linux-gaming.ru)
3 4
########################################################################
export LAUNCH_PARAMETERS=("/S" "/D=c:\Program Files (x86)\Ubisoft Game Launcher")
castro-fidel's avatar
castro-fidel committed
5
export PW_AUTOINSTALL_EXE="${PW_USER_TEMP}/UbisoftConnectInstaller.exe"
6
export PORTWINE_CREATE_SHORTCUT_NAME="Ubisoft Connect"
7
start_portwine
Mikhail Tergoev's avatar
Mikhail Tergoev committed
8
if try_download "https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UbisoftConnectInstaller.exe" "${PW_AUTOINSTALL_EXE}" no_mirror
9
then
Mikhail Tergoev's avatar
Mikhail Tergoev committed
10
    pw_start_progress_bar_install_game "Ubisoft Connect."
castro-fidel's avatar
castro-fidel committed
11 12
    pw_kill_autostart UbisoftConnect.exe &
    pw_run "${PW_AUTOINSTALL_EXE}"
13
    portwine_exe="$WINEPREFIX/drive_c/Program Files (x86)/Ubisoft Game Launcher/UbisoftConnect.exe"
castro-fidel's avatar
castro-fidel committed
14
    try_remove_file "${PW_AUTOINSTALL_EXE}"
Mikhail Tergoev's avatar
Mikhail Tergoev committed
15
    try_remove_file "${portwine_exe}.ppdb"
16
    kill_portwine
castro-fidel's avatar
castro-fidel committed
17
    pw_stop_progress_bar
18 19 20
    portwine_create_shortcut
fi
stop_portwine