POL_Install_msvc80
Informations
Créateur | Messages |
---|---|
GNU_Raziel
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionFrançais :
Code source#!/bin/bash # PlayOnLinux Function # Date : (2010-09-07 19:00) # Last revision : (2021-10-18 17:51) # Author : GNU_Raziel # Only For : http://www.playonlinux.com # Downloading MSvc80 cd "$POL_USER_ROOT"/ressources/ POL_Download_Resource "http://files.playonlinux.com/microsoft.vc80.crt.zip" "53accbf0e1e7a67415ddcdd44f8e226e" "" # Installing MSvc80 POL_Wine_WaitBefore "MSvc80 DLLs" cd "$WINEPREFIX"/drive_c/windows/temp unzip "$POL_USER_ROOT"/ressources/microsoft.vc80.crt.zip if [ "$POL_ARCH" = "amd64" ]; then cp Microsoft.VC80.CRT/*.* ../syswow64/ else cp Microsoft.VC80.CRT/*.* ../system32/ fi rm -rf Microsoft.VC80.CRT # Overriding dll POL_Wine_OverrideDLL "native,builtin" "msvcr80" |
Contributions
Filters:
ContribuerMembre | Messages |
Yaotl | Lundi 18 Octobre 2021 à 17:51 |
Yaotl
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,7 +1,7 @@ #!/bin/bash # PlayOnLinux Function # Date : (2010-09-07 19:00) -# Last revision : (2013-04-13 21:00) +# Last revision : (2021-10-18 17:51) # Author : GNU_Raziel # Only For : http://www.playonlinux.com @@ -13,7 +13,11 @@ POL_Wine_WaitBefore "MSvc80 DLLs" cd "$WINEPREFIX"/drive_c/windows/temp unzip "$POL_USER_ROOT"/ressources/microsoft.vc80.crt.zip -cp Microsoft.VC80.CRT/*.* ../system32/ +if [ "$POL_ARCH" = "amd64" ]; then + cp Microsoft.VC80.CRT/*.* ../syswow64/ +else + cp Microsoft.VC80.CRT/*.* ../system32/ +fi rm -rf Microsoft.VC80.CRT # Overriding dll Nouveau code source#!/bin/bash # PlayOnLinux Function # Date : (2010-09-07 19:00) # Last revision : (2021-10-18 17:51) # Author : GNU_Raziel # Only For : http://www.playonlinux.com # Downloading MSvc80 cd "$POL_USER_ROOT"/ressources/ POL_Download_Resource "http://files.playonlinux.com/microsoft.vc80.crt.zip" "53accbf0e1e7a67415ddcdd44f8e226e" "" # Installing MSvc80 POL_Wine_WaitBefore "MSvc80 DLLs" cd "$WINEPREFIX"/drive_c/windows/temp unzip "$POL_USER_ROOT"/ressources/microsoft.vc80.crt.zip if [ "$POL_ARCH" = "amd64" ]; then cp Microsoft.VC80.CRT/*.* ../syswow64/ else cp Microsoft.VC80.CRT/*.* ../system32/ fi rm -rf Microsoft.VC80.CRT # Overriding dll POL_Wine_OverrideDLL "native,builtin" "msvcr80" RéponsesVendredi 29 Octobre 2021 à 22:54
|
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com