SketchUp 2016

Informations

Créateur Messages
t0bias Anonymous

Attention

This installer is a beta script. It means that it might not work as expected

Informations

Plate-formes :
Téléchargements : 4317
Wine: 2.22

Retours d'expérience

Description

 A 3D modeling computer program.

Code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-10-25 18-11)
# Last revision : (2019-10-31 15-55)
# Wine version used : 2.22
# Distribution used to test : Ubuntu 18.04 LTS
# Author : t0bias
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Retail
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="SketchUp 2016"
PREFIX="SketchUp2016"
 
FILE_NAME=""
FILE_MD5=""
DOWNLOAD_URL=""
 
DOWNLOAD_URL_EN="https://www.sketchup3d.de/download/182/version-2016/5841/sketchup-pro-2016-en-x32-f-windows-2.exe"
DOWNLOAD_URL_DE="https://www.sketchup3d.de/download/182/version-2016/5838/sketchup-pro-2016-de-x32-f-windows-2.exe"
FILE_NAME_EN="sketchup-pro-2016-en-x32-f-windows-2.exe"
FILE_NAME_DE="sketchup-pro-2016-de-x32-f-windows-2.exe"
FILE_MD5_EN="2b4ed698059c32bc04824f50a9f72109"
FILE_MD5_DE="dd952d4b236874c001f6f5dc0ec651a1"
 
POL_SetupWindow_Init
POL_Debug_Init 
 
POL_SetupWindow_presentation "$TITLE" "Google/Trimble" "https://www.sketchup.com" "t0bias" "$PREFIX"
   
POL_System_TmpCreate "$PREFIX"
 
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
 
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "Please select the installation file to run." "SketchUp 2016 installation"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_SetupWindow_menu "In what language would you like to install $TITLE?" "Languages" "EN - English|DE - Deutsch" "|"
        if [ "$APP_ANSWER" = "DE - Deutsch" ]
        then
            FILE_NAME="$FILE_NAME_DE"
            FILE_MD5="$FILE_MD5_DE"
            DOWNLOAD_URL="$DOWNLOAD_URL_DE"
        elif [ "$APP_ANSWER" = "EN - English" ]
            FILE_NAME="$FILE_NAME_EN"
            FILE_MD5="$FILE_MD5_EN"
            DOWNLOAD_URL="$DOWNLOAD_URL_EN"
        else
            FILE_NAME="$FILE_NAME_EN"
            FILE_MD5="$FILE_MD5_EN"
            DOWNLOAD_URL="$DOWNLOAD_URL_EN"
        fi
    cd "$POL_System_TmpDir"
    POL_Download "$DOWNLOAD_URL" "$FILE_MD5"
    INSTALLER="$POL_System_TmpDir/$FILE_NAME"
fi
 
POL_System_SetArch "x86"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "2.22"
 
POL_SetupWindow_wait "Preparing Installation: corefonts" "$TITLE"
POL_Call POL_Install_corefonts
 
Set_OS "winxp"
 
POL_SetupWindow_wait "Preparing Installation: dotnet40" "$TITLE"
POL_Call POL_Install_dotnet40
  
Set_OS "win7"
 
POL_Wine_reboot
 
POL_SetupWindow_wait "Installation in progress." "$TITLE"
POL_Wine "$INSTALLER"
  
POL_System_TmpDelete
  
POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;3DGraphics"
POL_Shortcut "Style Builder.exe" "Style Builder" "" "Graphics;3DGraphics"
POL_Shortcut "LayOut.exe" "LayOut" "" "Graphics;3DGraphics"
 
POL_SetupWindow_Close
 
exit

Contributions

Filters:

Contribuer
Membre Messages
t0bias Jeudi 31 Octobre 2019 à 15:54
t0bias Anonymous

Information

Cette mise à jour a été acceptée par l'équipe

Messages

Here you go (Including a language selection [Englisch/German]).

Differences

@@ -0,0 +1,91 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2019-10-25 18-11)
+# Last revision : (2019-10-31 15-55)
+# Wine version used : 2.22
+# Distribution used to test : Ubuntu 18.04 LTS
+# Author : t0bias
+# PlayOnLinux : 4.3.4
+# Script licence : GPL3
+# Program licence : Retail
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+   
+TITLE="SketchUp 2016"
+PREFIX="SketchUp2016"
+ 
+FILE_NAME=""
+FILE_MD5=""
+DOWNLOAD_URL=""
+ 
+DOWNLOAD_URL_EN="https://www.sketchup3d.de/download/182/version-2016/5841/sketchup-pro-2016-en-x32-f-windows-2.exe"
+DOWNLOAD_URL_DE="https://www.sketchup3d.de/download/182/version-2016/5838/sketchup-pro-2016-de-x32-f-windows-2.exe"
+FILE_NAME_EN="sketchup-pro-2016-en-x32-f-windows-2.exe"
+FILE_NAME_DE="sketchup-pro-2016-de-x32-f-windows-2.exe"
+FILE_MD5_EN="2b4ed698059c32bc04824f50a9f72109"
+FILE_MD5_DE="dd952d4b236874c001f6f5dc0ec651a1"
+ 
+POL_SetupWindow_Init
+POL_Debug_Init 
+ 
+POL_SetupWindow_presentation "$TITLE" "Google/Trimble" "https://www.sketchup.com" "t0bias" "$PREFIX"
+   
+POL_System_TmpCreate "$PREFIX"
+ 
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+ 
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+    POL_SetupWindow_browse "Please select the installation file to run." "SketchUp 2016 installation"
+    INSTALLER="$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+    POL_SetupWindow_menu "In what language would you like to install $TITLE?" "Languages" "EN - English|DE - Deutsch" "|"
+        if [ "$APP_ANSWER" = "DE - Deutsch" ]
+        then
+            FILE_NAME="$FILE_NAME_DE"
+            FILE_MD5="$FILE_MD5_DE"
+            DOWNLOAD_URL="$DOWNLOAD_URL_DE"
+        elif [ "$APP_ANSWER" = "EN - English" ]
+            FILE_NAME="$FILE_NAME_EN"
+            FILE_MD5="$FILE_MD5_EN"
+            DOWNLOAD_URL="$DOWNLOAD_URL_EN"
+        else
+            FILE_NAME="$FILE_NAME_EN"
+            FILE_MD5="$FILE_MD5_EN"
+            DOWNLOAD_URL="$DOWNLOAD_URL_EN"
+        fi
+    cd "$POL_System_TmpDir"
+    POL_Download "$DOWNLOAD_URL" "$FILE_MD5"
+    INSTALLER="$POL_System_TmpDir/$FILE_NAME"
+fi
+ 
+POL_System_SetArch "x86"
+ 
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "2.22"
+ 
+POL_SetupWindow_wait "Preparing Installation: corefonts" "$TITLE"
+POL_Call POL_Install_corefonts
+ 
+Set_OS "winxp"
+ 
+POL_SetupWindow_wait "Preparing Installation: dotnet40" "$TITLE"
+POL_Call POL_Install_dotnet40
+  
+Set_OS "win7"
+ 
+POL_Wine_reboot
+ 
+POL_SetupWindow_wait "Installation in progress." "$TITLE"
+POL_Wine "$INSTALLER"
+  
+POL_System_TmpDelete
+  
+POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;3DGraphics"
+POL_Shortcut "Style Builder.exe" "Style Builder" "" "Graphics;3DGraphics"
+POL_Shortcut "LayOut.exe" "LayOut" "" "Graphics;3DGraphics"
+ 
+POL_SetupWindow_Close
+ 
+exit
\ No newline at end of file

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-10-25 18-11)
# Last revision : (2019-10-31 15-55)
# Wine version used : 2.22
# Distribution used to test : Ubuntu 18.04 LTS
# Author : t0bias
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Retail
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="SketchUp 2016"
PREFIX="SketchUp2016"
 
FILE_NAME=""
FILE_MD5=""
DOWNLOAD_URL=""
 
DOWNLOAD_URL_EN="https://www.sketchup3d.de/download/182/version-2016/5841/sketchup-pro-2016-en-x32-f-windows-2.exe"
DOWNLOAD_URL_DE="https://www.sketchup3d.de/download/182/version-2016/5838/sketchup-pro-2016-de-x32-f-windows-2.exe"
FILE_NAME_EN="sketchup-pro-2016-en-x32-f-windows-2.exe"
FILE_NAME_DE="sketchup-pro-2016-de-x32-f-windows-2.exe"
FILE_MD5_EN="2b4ed698059c32bc04824f50a9f72109"
FILE_MD5_DE="dd952d4b236874c001f6f5dc0ec651a1"
 
POL_SetupWindow_Init
POL_Debug_Init 
 
POL_SetupWindow_presentation "$TITLE" "Google/Trimble" "https://www.sketchup.com" "t0bias" "$PREFIX"
   
POL_System_TmpCreate "$PREFIX"
 
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
 
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "Please select the installation file to run." "SketchUp 2016 installation"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_SetupWindow_menu "In what language would you like to install $TITLE?" "Languages" "EN - English|DE - Deutsch" "|"
        if [ "$APP_ANSWER" = "DE - Deutsch" ]
        then
            FILE_NAME="$FILE_NAME_DE"
            FILE_MD5="$FILE_MD5_DE"
            DOWNLOAD_URL="$DOWNLOAD_URL_DE"
        elif [ "$APP_ANSWER" = "EN - English" ]
            FILE_NAME="$FILE_NAME_EN"
            FILE_MD5="$FILE_MD5_EN"
            DOWNLOAD_URL="$DOWNLOAD_URL_EN"
        else
            FILE_NAME="$FILE_NAME_EN"
            FILE_MD5="$FILE_MD5_EN"
            DOWNLOAD_URL="$DOWNLOAD_URL_EN"
        fi
    cd "$POL_System_TmpDir"
    POL_Download "$DOWNLOAD_URL" "$FILE_MD5"
    INSTALLER="$POL_System_TmpDir/$FILE_NAME"
fi
 
POL_System_SetArch "x86"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "2.22"
 
POL_SetupWindow_wait "Preparing Installation: corefonts" "$TITLE"
POL_Call POL_Install_corefonts
 
Set_OS "winxp"
 
POL_SetupWindow_wait "Preparing Installation: dotnet40" "$TITLE"
POL_Call POL_Install_dotnet40
  
Set_OS "win7"
 
POL_Wine_reboot
 
POL_SetupWindow_wait "Installation in progress." "$TITLE"
POL_Wine "$INSTALLER"
  
POL_System_TmpDelete
  
POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;3DGraphics"
POL_Shortcut "Style Builder.exe" "Style Builder" "" "Graphics;3DGraphics"
POL_Shortcut "LayOut.exe" "LayOut" "" "Graphics;3DGraphics"
 
POL_SetupWindow_Close
 
exit

Réponses

Vendredi 1 Novembre 2019 à 13:46
Approved :)
t0bias Vendredi 25 Octobre 2019 à 18:55
t0bias Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -0,0 +1,65 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2019-10-25 18-11)
+# Last revision : (2019-10-25 18-54)
+# Wine version used : 2.22
+# Distribution used to test : Ubuntu 18.04 LTS
+# Author : t0bias
+# PlayOnLinux : 4.3.4
+# Script licence : GPL3
+# Program licence : Retail
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+  
+TITLE="SketchUp 2016"
+PREFIX="SketchUp2016"
+
+POL_SetupWindow_Init
+POL_Debug_Init  
+
+POL_SetupWindow_presentation "$TITLE" "Google/Trimble" "https://www.sketchup.com" "t0bias" "$PREFIX"
+  
+POL_System_TmpCreate "$PREFIX"
+
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+    POL_SetupWindow_browse "Please select the installation file to run." "SketchUp 2016 installation"
+    INSTALLER="$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+    cd "$POL_System_TmpDir"
+    POL_Download "http://173.224.125.14/Graphic-Tools/SketchUpPro-2016-1-1450-80430-en-x86.exe" "2b4ed698059c32bc04824f50a9f72109"
+    INSTALLER="$POL_System_TmpDir/SketchUpPro-2016-1-1450-80430-en-x86.exe"
+fi
+
+POL_System_SetArch "x86"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "2.22"
+
+POL_SetupWindow_wait "Preparing Installation: corefonts" "$TITLE"
+POL_Call POL_Install_corefonts
+
+Set_OS "winxp"
+
+POL_SetupWindow_wait "Preparing Installation: dotnet40" "$TITLE"
+POL_Call POL_Install_dotnet40
+ 
+Set_OS "win7"
+
+POL_Wine_reboot
+
+POL_SetupWindow_wait "Installation in progress." "$TITLE"
+POL_Wine "$INSTALLER"
+ 
+POL_System_TmpDelete
+ 
+POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;3DGraphics"
+POL_Shortcut "Style Builder.exe" "Style Builder" "" "Graphics;3DGraphics"
+POL_Shortcut "LayOut.exe" "LayOut" "" "Graphics;3DGraphics"
+
+POL_SetupWindow_Close
+
+exit
\ No newline at end of file

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-10-25 18-11)
# Last revision : (2019-10-25 18-54)
# Wine version used : 2.22
# Distribution used to test : Ubuntu 18.04 LTS
# Author : t0bias
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Retail

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="SketchUp 2016"
PREFIX="SketchUp2016"

POL_SetupWindow_Init
POL_Debug_Init  

POL_SetupWindow_presentation "$TITLE" "Google/Trimble" "https://www.sketchup.com" "t0bias" "$PREFIX"
  
POL_System_TmpCreate "$PREFIX"

POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"

if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "Please select the installation file to run." "SketchUp 2016 installation"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://173.224.125.14/Graphic-Tools/SketchUpPro-2016-1-1450-80430-en-x86.exe" "2b4ed698059c32bc04824f50a9f72109"
    INSTALLER="$POL_System_TmpDir/SketchUpPro-2016-1-1450-80430-en-x86.exe"
fi

POL_System_SetArch "x86"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "2.22"

POL_SetupWindow_wait "Preparing Installation: corefonts" "$TITLE"
POL_Call POL_Install_corefonts

Set_OS "winxp"

POL_SetupWindow_wait "Preparing Installation: dotnet40" "$TITLE"
POL_Call POL_Install_dotnet40
 
Set_OS "win7"

POL_Wine_reboot

POL_SetupWindow_wait "Installation in progress." "$TITLE"
POL_Wine "$INSTALLER"
 
POL_System_TmpDelete
 
POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;3DGraphics"
POL_Shortcut "Style Builder.exe" "Style Builder" "" "Graphics;3DGraphics"
POL_Shortcut "LayOut.exe" "LayOut" "" "Graphics;3DGraphics"

POL_SetupWindow_Close

exit

Réponses

Vendredi 25 Octobre 2019 à 21:44
Hello, I can't approve this script because the link to a pirated edition.
Anonymous
Samedi 26 Octobre 2019 à 1:57
Hi! It's not a pirated edition at all, it's the official 2016 pro trial-version from a download-archive!

You can use this link-URL instead, if you prefer https://www.sketchup3d.de/download/182/version-2016/5841/sketchup-pro-2016-en-x32-f-windows-2.exe
Samedi 26 Octobre 2019 à 13:13
OK, I prefer the 2nd URL. Please replace it in the script, then I will approve it.

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