forked from CastroFidel/winehelper
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | ||
| # info_ru: Подготовка документов для государственной регистрации (ППДГР)
 | ||
| ########################################################################
 | ||
| export PROG_URL="https://www.nalog.gov.ru"
 | ||
| export WH_WINE_USE="wine_x_tkg_10-0_amd64"
 | ||
| export WINEPREFIX="nalog"
 | ||
| export PROG_NAME="ППДГР-2"
 | ||
| export PROG_ICON="ppdgr"
 | ||
| export BASE_PFX="none"
 | ||
| export WINEARCH="win32"
 | ||
| export WH_WINDOWS_VER="10"
 | ||
| var_winedlloverride_update "msxml4=b,wininet=b"
 | ||
| export INSTALL_DLL="corefonts micross tahoma lucida riched20 comctl32 msxml3 msxml4 msxml6 mdac28 wsh57 vcrun6 vb6run jet40 gdiplus vcrun2019 dotnet20sp2 dotnet40 dotnet48"
 | ||
| 
 | ||
| try_get_page "https://www.nalog.gov.ru/rn77/program/5961277/"
 | ||
| VER_MSI_SLASH=$(read_page | grep -oP 'href="\K[^"]*.msi[^"]*' | awk -F'/' '{print $(NF-1)}' | head -n 1)
 | ||
| AUTOINSTALL_EXE="${WH_TMP_DIR}/SetupPPDGR2.msi"
 | ||
| 
 | ||
| prepair_wine
 | ||
| if try_download "https://data.nalog.ru/files/ppdgr/${VER_MSI_SLASH}/SetupPPDGR2.msi" "${AUTOINSTALL_EXE}" ; then
 | ||
|     wine_run_install "${AUTOINSTALL_EXE}" /q
 | ||
|     try_remove_file "${AUTOINSTALL_EXE}"
 | ||
| 
 | ||
|     WIN_FILE_EXEC="$DRIVE_C/АО ГНИВЦ/ППДГР-2/PPDGR2.exe"
 | ||
|     create_desktop "$PROG_NAME" "$WIN_FILE_EXEC" "$PROG_ICON"
 | ||
| fi
 | ||
| https://data.nalog.ru/files/ppdgr/2.7.3/SetupPPDGR2.msi
 |