POL_Install_vcrun2012
Informations
Creator | Message |
---|---|
Ronin DUSETTE
![]() Admin
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks0 0 DescriptionHopefully grants compatibility to apps requiring vcrun2012. Based off of winetricks function, translated to POL calls. Source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." # Checking wine arch if [ "$POL_ARCH" == "amd64" ]; then POL_Debug_Fatal "$(eval_gettext 'WARNING: This 32bits package (vcrun2012) can not work on a 64-bit installation.')" fi POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "7f52a19ecaf7db3c163dd164be3e592e" "vcrun2012" mkdir $POL_USER_ROOT/tmp/vcrun2012 cd $POL_USER_ROOT/tmp/vcrun2012 cp $POL_USER_ROOT/ressources/vcrun2012/vcredist_x86.exe $POL_USER_ROOT/tmp/vcrun2012/ POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." rm -rf $POL_USER_ROOT/tmp/vcrun2012 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Thursday 1 October 2020 at 9:38 |
Dadu042
![]() Moderator
|
InformationThis update has been approved by the team. MessageIncompatible with 64bits prefixes. Differences@@ -7,6 +7,11 @@ POL_Debug_Message "Installing vcrun2012..." +# Checking wine arch +if [ "$POL_ARCH" == "amd64" ]; then + POL_Debug_Fatal "$(eval_gettext 'WARNING: This 32bits package (vcrun2012) can not work on a 64-bit installation.')" +fi + POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "7f52a19ecaf7db3c163dd164be3e592e" "vcrun2012" mkdir $POL_USER_ROOT/tmp/vcrun2012 cd $POL_USER_ROOT/tmp/vcrun2012 New source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." # Checking wine arch if [ "$POL_ARCH" == "amd64" ]; then POL_Debug_Fatal "$(eval_gettext 'WARNING: This 32bits package (vcrun2012) can not work on a 64-bit installation.')" fi POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "7f52a19ecaf7db3c163dd164be3e592e" "vcrun2012" mkdir $POL_USER_ROOT/tmp/vcrun2012 cd $POL_USER_ROOT/tmp/vcrun2012 cp $POL_USER_ROOT/ressources/vcrun2012/vcredist_x86.exe $POL_USER_ROOT/tmp/vcrun2012/ POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." rm -rf $POL_USER_ROOT/tmp/vcrun2012 Replies |
Ronin DUSETTE | Thursday 8 January 2015 at 3:51 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. MessageRemoved original line with other MD5, as it did not work. Differences@@ -11,7 +11,7 @@ mkdir $POL_USER_ROOT/tmp/vcrun2012 cd $POL_USER_ROOT/tmp/vcrun2012 -cp $POL_USER_ROOT/ressources/vcredist_x86.exe $POL_USER_ROOT/tmp/vcrun2012/ +cp $POL_USER_ROOT/ressources/vcrun2012/vcredist_x86.exe $POL_USER_ROOT/tmp/vcrun2012/ POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a3" New source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "7f52a19ecaf7db3c163dd164be3e592e" "vcrun2012" mkdir $POL_USER_ROOT/tmp/vcrun2012 cd $POL_USER_ROOT/tmp/vcrun2012 cp $POL_USER_ROOT/ressources/vcrun2012/vcredist_x86.exe $POL_USER_ROOT/tmp/vcrun2012/ POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." rm -rf $POL_USER_ROOT/tmp/vcrun2012 RepliesThursday 8 January 2015 at 7:26
Thursday 8 January 2015 at 7:30
Edited by RoninDusette |
Ronin DUSETTE | Thursday 8 January 2015 at 1:17 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. MessageChanging from wget to POL_Download_Resource Differences@@ -7,8 +7,8 @@ POL_Debug_Message "Installing vcrun2012..." -POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" - +#POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" +POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "7f52a19ecaf7db3c163dd164be3e592e" mkdir $POL_USER_ROOT/tmp/vcrun2012 cd $POL_USER_ROOT/tmp/vcrun2012 New source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." #POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" POL_Download_Resource "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "7f52a19ecaf7db3c163dd164be3e592e" mkdir $POL_USER_ROOT/tmp/vcrun2012 cd $POL_USER_ROOT/tmp/vcrun2012 cp $POL_USER_ROOT/ressources/vcredist_x86.exe $POL_USER_ROOT/tmp/vcrun2012/ POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." rm -rf $POL_USER_ROOT/tmp/vcrun2012 RepliesThursday 8 January 2015 at 1:27
Thursday 8 January 2015 at 1:32
Thursday 8 January 2015 at 4:41
Edited by RoninDusette |
Ronin DUSETTE | Wednesday 7 January 2015 at 23:45 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. MessageRemoving unneeded quotes on BASH commands Differences@@ -7,8 +7,8 @@ POL_Debug_Message "Installing vcrun2012..." -mkdir "$POL_USER_ROOT/tmp/vcrun2012" -cd "$POL_USER_ROOT/tmp/vcrun2012" +mkdir $POL_USER_ROOT/tmp/vcrun2012 +cd $POL_USER_ROOT/tmp/vcrun2012 POL_System_wget "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" New source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." mkdir $POL_USER_ROOT/tmp/vcrun2012 cd $POL_USER_ROOT/tmp/vcrun2012 POL_System_wget "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." rm -rf $POL_USER_ROOT/tmp/vcrun2012 Replies |
Ronin DUSETTE | Wednesday 7 January 2015 at 23:40 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. MessageSwitching download to custom folder, and cleaning up that folder only, instead of removing the whole tmp folder. Will also implement POL_Download_Resource when I have the chance. Differences@@ -7,21 +7,22 @@ POL_Debug_Message "Installing vcrun2012..." -cd "$POL_USER_ROOT/tmp" +mkdir "$POL_USER_ROOT/tmp/vcrun2012" +cd "$POL_USER_ROOT/tmp/vcrun2012" POL_System_wget "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" -POL_System_cabextract "$POL_USER_ROOT/tmp/vcredist_x86.exe" -POL_System_cabextract "$POL_USER_ROOT/tmp/a2" -POL_System_cabextract "$POL_USER_ROOT/tmp/a3" +POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" +POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a2" +POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a3" POL_Debug_Message "Copying DLL files..." -cp $POL_USER_ROOT/tmp/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll -cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll -cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll -cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll -cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll -cp $POL_USER_ROOT/tmp/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll +cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll +cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll +cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll +cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll +cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll +cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" @@ -29,4 +30,4 @@ POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." -rm -rf $POL_USER_ROOT/tmp/* \ No newline at end of file +rm -rf $POL_USER_ROOT/tmp/vcrun2012 \ No newline at end of file New source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." mkdir "$POL_USER_ROOT/tmp/vcrun2012" cd "$POL_USER_ROOT/tmp/vcrun2012" POL_System_wget "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/vcrun2012/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/vcrun2012/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." rm -rf $POL_USER_ROOT/tmp/vcrun2012 Replies |
Ronin DUSETTE | Wednesday 7 January 2015 at 7:58 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. Differences@@ -29,4 +29,4 @@ POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." -rm $POL_USER_ROOT/tmp/* \ No newline at end of file +rm -rf $POL_USER_ROOT/tmp/* \ No newline at end of file New source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." cd "$POL_USER_ROOT/tmp" POL_System_wget "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" POL_System_cabextract "$POL_USER_ROOT/tmp/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." rm -rf $POL_USER_ROOT/tmp/* RepliesWednesday 7 January 2015 at 23:35
Wednesday 7 January 2015 at 23:37
|
Ronin DUSETTE | Wednesday 7 January 2015 at 7:55 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. Differences@@ -26,4 +26,7 @@ POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" -POL_Wine_OverrideDLL "native,builtin" "vcomp110" \ No newline at end of file +POL_Wine_OverrideDLL "native,builtin" "vcomp110" + +POL_Debug_Message "Cleaning tmp folder..." +rm $POL_USER_ROOT/tmp/* \ No newline at end of file New source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." cd "$POL_USER_ROOT/tmp" POL_System_wget "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" POL_System_cabextract "$POL_USER_ROOT/tmp/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" POL_Debug_Message "Cleaning tmp folder..." rm $POL_USER_ROOT/tmp/* Replies |
Ronin DUSETTE | Wednesday 7 January 2015 at 7:54 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. MessageInitial commit Differences@@ -0,0 +1,29 @@ +#!/bin/bash +# Date : (2015-01-6 22-00) +# Distribution used to test : Kubuntu 14.04 - 64-bit +# Author : RoninDusette +# Licence : GPLv3 +# PlayOnLinux: 4.2.5 + +POL_Debug_Message "Installing vcrun2012..." + +cd "$POL_USER_ROOT/tmp" + +POL_System_wget "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" +POL_System_cabextract "$POL_USER_ROOT/tmp/vcredist_x86.exe" +POL_System_cabextract "$POL_USER_ROOT/tmp/a2" +POL_System_cabextract "$POL_USER_ROOT/tmp/a3" + +POL_Debug_Message "Copying DLL files..." + +cp $POL_USER_ROOT/tmp/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll +cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll +cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll +cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll +cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll +cp $POL_USER_ROOT/tmp/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll + +POL_Wine_OverrideDLL "native,builtin" "atl110" +POL_Wine_OverrideDLL "native,builtin" "msvcp110" +POL_Wine_OverrideDLL "native,builtin" "msvcr110" +POL_Wine_OverrideDLL "native,builtin" "vcomp110" \ No newline at end of file New source code#!/bin/bash # Date : (2015-01-6 22-00) # Distribution used to test : Kubuntu 14.04 - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.5 POL_Debug_Message "Installing vcrun2012..." cd "$POL_USER_ROOT/tmp" POL_System_wget "http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe" "96b377a27ac5445328cbaae210fc4f0aaa750d3f" POL_System_cabextract "$POL_USER_ROOT/tmp/vcredist_x86.exe" POL_System_cabextract "$POL_USER_ROOT/tmp/a2" POL_System_cabextract "$POL_USER_ROOT/tmp/a3" POL_Debug_Message "Copying DLL files..." cp $POL_USER_ROOT/tmp/F_CENTRAL_atl110_x86 $WINEPREFIX/drive_c/windows/system32/atl110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110_x86 $WINEPREFIX/drive_c/windows/system32/mfc110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_mfc110u_x86 $WINEPREFIX/drive_c/windows/system32/mfc110u.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcp110_x86 $WINEPREFIX/drive_c/windows/system32/msvcp110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_msvcr110_x86 $WINEPREFIX/drive_c/windows/system32/msvcr110.dll cp $POL_USER_ROOT/tmp/F_CENTRAL_vcomp110_x86 $WINEPREFIX/drive_c/windows/system32/vcomp110.dll POL_Wine_OverrideDLL "native,builtin" "atl110" POL_Wine_OverrideDLL "native,builtin" "msvcp110" POL_Wine_OverrideDLL "native,builtin" "msvcr110" POL_Wine_OverrideDLL "native,builtin" "vcomp110" Replies |