-
-
Save ii64/82e8c2b8e835a54dd981d172554b2346 to your computer and use it in GitHub Desktop.
PlayOnLinux script to install Adobe Acrobat Reader DC 2020 (should be lauched after installation using script for 2015)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env playonlinux-bash | |
[ "$PLAYONLINUX" = "" ] && exit 0 | |
source "$PLAYONLINUX/lib/sources" | |
TITLE="Adobe Acrobat Reader DC" | |
PREFIX="AdobeAcrobatReaderDC" | |
WINEVERSION="4.0.3" | |
EDITOR="Adobe Systems Inc." | |
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html" | |
AUTHOR="Martins Bruvelis, N0rbert (to support ARDC 2020)" | |
POL_SetupWindow_Init | |
POL_Debug_Init | |
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" | |
# select prefix | |
POL_System_TmpCreate "$PREFIX" | |
POL_Wine_SelectPrefix "$PREFIX" | |
# setup prefix | |
POL_Wine_InstallFonts | |
POL_Call POL_Install_atmlib | |
POL_Call POL_Install_corefonts | |
#POL_Call POL_Install_allfonts | |
POL_Call POL_Install_wsh57 | |
POL_Call POL_Install_mspatcha | |
POL_Call POL_Install_riched30 | |
POL_Call POL_Install_riched20 | |
POL_Call POL_Install_gdiplus | |
POL_Call POL_Install_FontsSmoothRGB | |
POL_Call POL_Install_d3dx11 | |
POL_Call POL_Install_d3dx10 | |
POL_Call POL_Install_directx9 | |
POL_Wine_WaitBefore "$TITLE" | |
POL_Wine_WaitExit "$TITLE" | |
POL_SetupWindow_Close | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment