Vous êtes ici
Moebius Modeling
Informations
Créateur | Messages |
---|---|
ramon1611
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionSoftware for modeling. Code source#!/bin/bash if [ "$PLAYONLINUX" = "" ] then exit 0 fi source "$PLAYONLINUX/lib/sources" cfg_check TITLE="Moebius" PUBLISHER="Fa. Ellen Hoche, Lehr- und Lernmittel" WEBSITE="http://www.mintext.de/" AUTHOR="ramon1611" PREFIX="moebius" POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$WEBSITE" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.6" POL_System_SetArch "x86" POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "Multisampling" "enabled" POL_Wine_X11Drv "Managed" "Y" Set_OS "winxp" "sp2" POL_Call POL_Install_gdiplus POL_Call POL_Install_LunaTheme POL_Call POL_Install_corefonts POL_SetupWindow_InstallMethod "LOCAL" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_question "Do you have downloaded the moebius installation file?" "Download?" if [ "$APP_ANSWER" = "FALSE" ] then POL_Browser "$WEBSITE" fi POL_SetupWindow_browse "Select Moebius installation file!" "File selection" SetupFile="$APP_ANSWER" POL_Wine start /unix "$SetupFile" POL_Wine_WaitExit "$TITLE" #elif [ "$INSTALL_METHOD" = "CD" ] #then # POL_SetupWindow_cdrom # POL_SetupWindow_check_cdrom "moeb-setup.exe" # # POL_SetupWindow_wait "Installation in progress." "$TITLE installation" # POL_Wine start /unix "$CDROM/moeb-setup.exe" fi POL_Shortcut "Program Files/Moebius/moebius.exe" "$TITLE" POL_SetupWindow_reboot POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Dimanche 2 Juin 2019 à 14:48 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesMove script in the right place. Fix website URL. Differences@@ -0,0 +1,60 @@ +#!/bin/bash +if [ "$PLAYONLINUX" = "" ] +then +exit 0 +fi +source "$PLAYONLINUX/lib/sources" + +cfg_check + +TITLE="Moebius" +PUBLISHER="Fa. Ellen Hoche, Lehr- und Lernmittel" +WEBSITE="http://www.mintext.de/" +AUTHOR="ramon1611" +PREFIX="moebius" + +POL_SetupWindow_Init +POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$WEBSITE" "$AUTHOR" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "1.6" + +POL_System_SetArch "x86" +POL_Wine_Direct3D "UseGLSL" "enabled" +POL_Wine_Direct3D "DirectDrawRenderer" "opengl" +POL_Wine_Direct3D "Multisampling" "enabled" +POL_Wine_X11Drv "Managed" "Y" +Set_OS "winxp" "sp2" + +POL_Call POL_Install_gdiplus +POL_Call POL_Install_LunaTheme +POL_Call POL_Install_corefonts + +POL_SetupWindow_InstallMethod "LOCAL" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_question "Do you have downloaded the moebius installation file?" "Download?" + if [ "$APP_ANSWER" = "FALSE" ] + then + POL_Browser "$WEBSITE" + fi + + POL_SetupWindow_browse "Select Moebius installation file!" "File selection" + SetupFile="$APP_ANSWER" + + POL_Wine start /unix "$SetupFile" + POL_Wine_WaitExit "$TITLE" +#elif [ "$INSTALL_METHOD" = "CD" ] +#then +# POL_SetupWindow_cdrom +# POL_SetupWindow_check_cdrom "moeb-setup.exe" +# +# POL_SetupWindow_wait "Installation in progress." "$TITLE installation" +# POL_Wine start /unix "$CDROM/moeb-setup.exe" +fi + +POL_Shortcut "Program Files/Moebius/moebius.exe" "$TITLE" + +POL_SetupWindow_reboot +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash if [ "$PLAYONLINUX" = "" ] then exit 0 fi source "$PLAYONLINUX/lib/sources" cfg_check TITLE="Moebius" PUBLISHER="Fa. Ellen Hoche, Lehr- und Lernmittel" WEBSITE="http://www.mintext.de/" AUTHOR="ramon1611" PREFIX="moebius" POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$WEBSITE" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.6" POL_System_SetArch "x86" POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "Multisampling" "enabled" POL_Wine_X11Drv "Managed" "Y" Set_OS "winxp" "sp2" POL_Call POL_Install_gdiplus POL_Call POL_Install_LunaTheme POL_Call POL_Install_corefonts POL_SetupWindow_InstallMethod "LOCAL" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_question "Do you have downloaded the moebius installation file?" "Download?" if [ "$APP_ANSWER" = "FALSE" ] then POL_Browser "$WEBSITE" fi POL_SetupWindow_browse "Select Moebius installation file!" "File selection" SetupFile="$APP_ANSWER" POL_Wine start /unix "$SetupFile" POL_Wine_WaitExit "$TITLE" #elif [ "$INSTALL_METHOD" = "CD" ] #then # POL_SetupWindow_cdrom # POL_SetupWindow_check_cdrom "moeb-setup.exe" # # POL_SetupWindow_wait "Installation in progress." "$TITLE installation" # POL_Wine start /unix "$CDROM/moeb-setup.exe" fi POL_Shortcut "Program Files/Moebius/moebius.exe" "$TITLE" POL_SetupWindow_reboot POL_SetupWindow_Close exit Réponses |
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