winehelper/manualinstall/is-record-station
2025-04-01 17:25:00 +03:00

25 lines
1.2 KiB
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env bash
# info_ru: Специализированное программное обеспечение «Автономная станция записи» предназначено для записи ответов участников итогового собеседования.
########################################################################
export WH_WINE_USE="wine_x_tkg_10-0_i586"
export WINEPREFIX="isrecordingstation"
export PROG_NAME="АС Записи"
export PROG_ICON="isrecordingstation"
export BASE_PFX="audiorecstation_pfx_v01"
export WH_WINDOWS_VER="10"
export WINEARCH="win32"
export INSTALL_DLL="dotnet48 corefonts vcrun2022 dsound xact winhttp gdiplus"
export USE_RENDERER="opengl"
if [[ -f "$2" ]] ; then
prepair_wine
wine_run_install "$2" /S /v/qn
WIN_FILE_EXEC="$DRIVE_C/Program Files/Federal Test Center/ISRecordStation2024-2025/RecordStation.exe"
create_desktop "$PROG_NAME" "$WIN_FILE_EXEC" "$PROG_ICON"
else
fatal "Не найден файл установки для $PROG_NAME. Перезапустите по примеру:
winehelper install $1 \"/путь/до/установочногоайла\""
fi