SketchUp 2018

Informations

Créateur Messages
Dadu042

Attention

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

Informations

Plate-formes :
Téléchargements : 62081
Wine: 3.12

Retours d'expérience

Description

 A 3D modeling computer program. Wikipedia.

Appdb.winehq.org: Test reports with Wine only (without POL).

Code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-22 01-04)
# Last revision : (2019-05-22 01-04)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Script wrote according to: https://medium.com/@kewshka/sketchup-pro-2018-on-ubuntu-18-04-bionic-9b33a7986850
# Thanks to Jorge_r69 for the report.
# According the date ot the howto, I (Dadu042) think that the Wine version used was 3.13

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="SketchUp 2018"
PREFIX="SketchUp2018"
WORKING_WINE_VERSION="3.12"
AUTHOR="Dadu042"
EDITOR="Trimble"
GAME_URL="https://en.wikipedia.org/wiki/SketchUp"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.2.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

POL_Call "POL_Install_vcrun2005"

# Allow to choose between 2 video cards in the same PC.
POL_Call "POL_Install_VideoDriver"

POL_Call "POL_Install_dotnet45"

POL_Wine_OverrideDLL "native" "mfc140u.dll"

###############
# Go          #
###############

        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"

POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;"
POL_Shortcut "SketchUpPro.exe" "$TITLE Pro" "" "Graphics;"

# POL_Shortcut_Document "$TITLE" "Manual.pdf"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Lundi 3 Février 2020 à 22:13
Dadu042

Information

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

Differences

@@ -27,6 +27,8 @@
 
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
+POL_RequiredVersion "4.2.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "amd64"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-22 01-04)
# Last revision : (2019-05-22 01-04)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Script wrote according to: https://medium.com/@kewshka/sketchup-pro-2018-on-ubuntu-18-04-bionic-9b33a7986850
# Thanks to Jorge_r69 for the report.
# According the date ot the howto, I (Dadu042) think that the Wine version used was 3.13

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="SketchUp 2018"
PREFIX="SketchUp2018"
WORKING_WINE_VERSION="3.12"
AUTHOR="Dadu042"
EDITOR="Trimble"
GAME_URL="https://en.wikipedia.org/wiki/SketchUp"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.2.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

POL_Call "POL_Install_vcrun2005"

# Allow to choose between 2 video cards in the same PC.
POL_Call "POL_Install_VideoDriver"

POL_Call "POL_Install_dotnet45"

POL_Wine_OverrideDLL "native" "mfc140u.dll"

###############
# Go          #
###############

        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"

POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;"
POL_Shortcut "SketchUpPro.exe" "$TITLE Pro" "" "Graphics;"

# POL_Shortcut_Document "$TITLE" "Manual.pdf"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Dadu042 Mercredi 22 Mai 2019 à 1:49
Dadu042

Warning

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

Messages

Script not tested. Please write reports or update it.

Differences

@@ -54,8 +54,8 @@
         POL_Wine_WaitExit "$TITLE"
         cd "$POL_System_TmpDir"
 
-POL_Shortcut "SketchUp.exe" "$TITLE" ""
-POL_Shortcut "SketchUpPro.exe" "$TITLE Pro" ""
+POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;"
+POL_Shortcut "SketchUpPro.exe" "$TITLE Pro" "" "Graphics;"
 
 # POL_Shortcut_Document "$TITLE" "Manual.pdf"
  

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-22 01-04)
# Last revision : (2019-05-22 01-04)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Script wrote according to: https://medium.com/@kewshka/sketchup-pro-2018-on-ubuntu-18-04-bionic-9b33a7986850
# Thanks to Jorge_r69 for the report.
# According the date ot the howto, I (Dadu042) think that the Wine version used was 3.13

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="SketchUp 2018"
PREFIX="SketchUp2018"
WORKING_WINE_VERSION="3.12"
AUTHOR="Dadu042"
EDITOR="Trimble"
GAME_URL="https://en.wikipedia.org/wiki/SketchUp"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

POL_Call "POL_Install_vcrun2005"

# Allow to choose between 2 video cards in the same PC.
POL_Call "POL_Install_VideoDriver"

POL_Call "POL_Install_dotnet45"

POL_Wine_OverrideDLL "native" "mfc140u.dll"

###############
# Go          #
###############

        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"

POL_Shortcut "SketchUp.exe" "$TITLE" "" "Graphics;"
POL_Shortcut "SketchUpPro.exe" "$TITLE Pro" "" "Graphics;"

# POL_Shortcut_Document "$TITLE" "Manual.pdf"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Edité par Dadu042

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