WarpPLS 7

Informations

Créateur Messages
tungdao Anonymous

Attention

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

Informations

Plate-formes :
Téléchargements : 3163
Wine: 2.20

Retours d'expérience

Description

Analysis Partial Least Square (PLS-SEM) on multidiscipline study.  Wikipedia.

Captures d'écran

Miniature

Code source

#!/bin/bash
# Date : (2020-01-30) 
# Last revision : see changelog
# Distribution used to test : MacOS Mojave 10.14
# Author         : Dao Duy Tung
# PlayOnMac        : 4.3.4
#
# CHANGELOGS
# [Dao Duy Tung] (2020-01-30) 
# Disable method DOWNLOAD
# Removed dotnet30
#
# [Dao Duy Tung] (2020-02-02 19:00)
# Removed: dotnet20, dotnet40, msxml6
# Added: gecko, vcrun2005, vcrun2012, vcrun2013, vcrun2015
# Wine 3.0.3 -> 2.20 
# Windows 10 -> 7
#
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="WarpPLS 7"
PREFIX="TungDaoWarpPLS"
WORKING_WINE_VERSION="2.20"
OSVERSION="win7"

EDITOR="Ned Kock"
WEB_URL="http://www.warppls.com"
# DOWNLOADURL=""
# SETUPFILE=""
SHORTCUTFILENAME="WarpPLS_7_0.exe"
AUTHOR="Dao Duy Tung"
# PERSONALBLOG="https://tungdao.org"

 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
 

POL_RequiredVersion "2.20" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 2.20 is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_System_TmpCreate "$PREFIX"

# Installation
Set_OS "$OSVERSION"

POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2012
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_vcrun2015

 
cd "$POL_System_TmpDir"
 
if [ "$POL_SELECTED_FILE" ]; then
    SetupFile="$POL_SELECTED_FILE"
else
# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
    INSTALL_METHOD="LOCAL"
    
    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        POL_Download "$DOWNLOADURL" ""
        SetupFile="$POL_System_TmpDir/$SETUPFILE"
    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SetupFile="$APP_ANSWER"
    fi
fi
 

POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupFile"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete
 
POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
tungdao Dimanche 2 Février 2020 à 14:41
tungdao Anonymous

Information

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

Messages

Modified script, see changlog

 

Differences

@@ -1,21 +1,30 @@
 #!/bin/bash
-# Date : (2020-01-30)
+# Date : (2020-01-30) 
+# Last revision : see changelog
 # Distribution used to test : MacOS Mojave 10.14
-# Author : Dao Duy Tung
-# PlayOnMac: 3.0.3
- 
+# Author 	: Dao Duy Tung
+# PlayOnMac	: 4.3.4
+#
 # CHANGELOGS
+# [Dao Duy Tung] (2020-01-30) 
 # Disable method DOWNLOAD
 # Removed dotnet30
-  
+#
+# [Dao Duy Tung] (2020-02-02 19:00)
+# Removed: dotnet20, dotnet40, msxml6
+# Added: gecko, vcrun2005, vcrun2012, vcrun2013, vcrun2015
+# Wine 3.0.3 -> 2.20 
+# Windows 10 -> 7
+#
+ 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-  
+ 
 TITLE="WarpPLS 7"
 PREFIX="TungDaoWarpPLS"
-WORKING_WINE_VERSION="3.0.3"
-OSVERSION="win10"
- 
+WORKING_WINE_VERSION="2.20"
+OSVERSION="win7"
+
 EDITOR="Ned Kock"
 WEB_URL="http://www.warppls.com"
 # DOWNLOADURL=""
@@ -23,28 +32,34 @@
 SHORTCUTFILENAME="WarpPLS_7_0.exe"
 AUTHOR="Dao Duy Tung"
 # PERSONALBLOG="https://tungdao.org"
+
  
-  
 POL_SetupWindow_Init
 POL_Debug_Init
-  
+ 
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
-  
-POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"
  
+
+POL_RequiredVersion "2.20" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 2.20 is required to install $TITLE"
+
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
-  
-POL_System_TmpCreate "$PREFIX"
  
-POL_Call POL_Install_msxml6
-POL_Call POL_Install_corefonts
-POL_Call POL_Install_dotnet20
-POL_Call POL_Install_dotnet40
+POL_System_TmpCreate "$PREFIX"
+
+# Installation
+Set_OS "$OSVERSION"
+
 POL_Call POL_Install_gecko
-  
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_vcrun2005
+POL_Call POL_Install_vcrun2012
+POL_Call POL_Install_vcrun2013
+POL_Call POL_Install_vcrun2015
+
+ 
 cd "$POL_System_TmpDir"
-  
+ 
 if [ "$POL_SELECTED_FILE" ]; then
     SetupFile="$POL_SELECTED_FILE"
 else
@@ -60,18 +75,16 @@
     fi
 fi
  
-# Installation
-Set_OS "$OSVERSION"
- 
+
 POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine "$SetupFile"
 POL_Wine_WaitExit "$TITLE"
- 
+
 POL_System_TmpDelete
-  
+ 
 POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
 POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
- 
+
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2020-01-30) 
# Last revision : see changelog
# Distribution used to test : MacOS Mojave 10.14
# Author         : Dao Duy Tung
# PlayOnMac        : 4.3.4
#
# CHANGELOGS
# [Dao Duy Tung] (2020-01-30) 
# Disable method DOWNLOAD
# Removed dotnet30
#
# [Dao Duy Tung] (2020-02-02 19:00)
# Removed: dotnet20, dotnet40, msxml6
# Added: gecko, vcrun2005, vcrun2012, vcrun2013, vcrun2015
# Wine 3.0.3 -> 2.20 
# Windows 10 -> 7
#
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="WarpPLS 7"
PREFIX="TungDaoWarpPLS"
WORKING_WINE_VERSION="2.20"
OSVERSION="win7"

EDITOR="Ned Kock"
WEB_URL="http://www.warppls.com"
# DOWNLOADURL=""
# SETUPFILE=""
SHORTCUTFILENAME="WarpPLS_7_0.exe"
AUTHOR="Dao Duy Tung"
# PERSONALBLOG="https://tungdao.org"

 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
 

POL_RequiredVersion "2.20" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 2.20 is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_System_TmpCreate "$PREFIX"

# Installation
Set_OS "$OSVERSION"

POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2012
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_vcrun2015

 
cd "$POL_System_TmpDir"
 
if [ "$POL_SELECTED_FILE" ]; then
    SetupFile="$POL_SELECTED_FILE"
else
# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
    INSTALL_METHOD="LOCAL"
    
    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        POL_Download "$DOWNLOADURL" ""
        SetupFile="$POL_System_TmpDir/$SETUPFILE"
    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SetupFile="$APP_ANSWER"
    fi
fi
 

POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupFile"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete
 
POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Dimanche 2 Février 2020 à 17:46
Approved. Instead of Wine 2.20 i recommend the 2.22. I don't understand why you downgrade from v3.0.3 (pretty stable) to v2.20.
Anonymous
Mercredi 5 Février 2020 à 9:44
it is a long story. Actually, for the first time, I used macOS, I already installed this software in POM by myself. However, I returned Windows, I had forgotten which wine version used on macOS. So, I take time to find and tries many times on forums (I saw 3.0.3 is a version that most people use). Compared with wine 2.22, I think it lightweight than wine 3.0.3.  

Edité par tungdao

Dadu042 Jeudi 30 Janvier 2020 à 21:10
Dadu042

Warning

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

Differences

@@ -0,0 +1,77 @@
+#!/bin/bash
+# Date : (2020-01-30)
+# Distribution used to test : MacOS Mojave 10.14
+# Author : Dao Duy Tung
+# PlayOnMac: 3.0.3
+ 
+# CHANGELOGS
+# Disable method DOWNLOAD
+# Removed dotnet30
+  
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+  
+TITLE="WarpPLS 7"
+PREFIX="TungDaoWarpPLS"
+WORKING_WINE_VERSION="3.0.3"
+OSVERSION="win10"
+ 
+EDITOR="Ned Kock"
+WEB_URL="http://www.warppls.com"
+# DOWNLOADURL=""
+# SETUPFILE=""
+SHORTCUTFILENAME="WarpPLS_7_0.exe"
+AUTHOR="Dao Duy Tung"
+# PERSONALBLOG="https://tungdao.org"
+ 
+  
+POL_SetupWindow_Init
+POL_Debug_Init
+  
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
+  
+POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"
+ 
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+  
+POL_System_TmpCreate "$PREFIX"
+ 
+POL_Call POL_Install_msxml6
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_dotnet20
+POL_Call POL_Install_dotnet40
+POL_Call POL_Install_gecko
+  
+cd "$POL_System_TmpDir"
+  
+if [ "$POL_SELECTED_FILE" ]; then
+    SetupFile="$POL_SELECTED_FILE"
+else
+# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+    INSTALL_METHOD="LOCAL"
+    
+    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
+        POL_Download "$DOWNLOADURL" ""
+        SetupFile="$POL_System_TmpDir/$SETUPFILE"
+    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
+        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+        SetupFile="$APP_ANSWER"
+    fi
+fi
+ 
+# Installation
+Set_OS "$OSVERSION"
+ 
+POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$SetupFile"
+POL_Wine_WaitExit "$TITLE"
+ 
+POL_System_TmpDelete
+  
+POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
+POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
+ 
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2020-01-30)
# Distribution used to test : MacOS Mojave 10.14
# Author : Dao Duy Tung
# PlayOnMac: 3.0.3
 
# CHANGELOGS
# Disable method DOWNLOAD
# Removed dotnet30
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="WarpPLS 7"
PREFIX="TungDaoWarpPLS"
WORKING_WINE_VERSION="3.0.3"
OSVERSION="win10"
 
EDITOR="Ned Kock"
WEB_URL="http://www.warppls.com"
# DOWNLOADURL=""
# SETUPFILE=""
SHORTCUTFILENAME="WarpPLS_7_0.exe"
AUTHOR="Dao Duy Tung"
# PERSONALBLOG="https://tungdao.org"
 
  
POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
  
POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
  
POL_System_TmpCreate "$PREFIX"
 
POL_Call POL_Install_msxml6
POL_Call POL_Install_corefonts
POL_Call POL_Install_dotnet20
POL_Call POL_Install_dotnet40
POL_Call POL_Install_gecko
  
cd "$POL_System_TmpDir"
  
if [ "$POL_SELECTED_FILE" ]; then
    SetupFile="$POL_SELECTED_FILE"
else
# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
    INSTALL_METHOD="LOCAL"
    
    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        POL_Download "$DOWNLOADURL" ""
        SetupFile="$POL_System_TmpDir/$SETUPFILE"
    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SetupFile="$APP_ANSWER"
    fi
fi
 
# Installation
Set_OS "$OSVERSION"
 
POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupFile"
POL_Wine_WaitExit "$TITLE"
 
POL_System_TmpDelete
  
POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
 
POL_SetupWindow_Close
exit 0

Réponses

Jeudi 30 Janvier 2020 à 21:12
Approved because there is no download link.
tungdao Lundi 27 Janvier 2020 à 10:49
tungdao Anonymous

Warning

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

Messages

WarpPLS is software helping analysis quantitative data (questionnaire, survey) on PLS-based structural equation modeling (SEM) on statistical science.

This script use version 7 beta.

Comment: In the first time, user need install two files as XQuartz and Mono outside playonmac

 

Differences

@@ -0,0 +1,79 @@
+#!/bin/bash
+# Date : (2020-01-30) 
+# Distribution used to test : MacOS Mojave 10.14
+# Author : Dao Duy Tung
+# PlayOnMac: 3.0.3
+
+# CHANGELOGS
+# Disable method DOWNLOAD
+# Removed dotnet30
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="WarpPLS 7"
+PREFIX="TungDaoWarpPLS"
+WORKING_WINE_VERSION="3.0.3"
+OSVERSION="win10"
+
+
+EDITOR="Ned Kock"
+WEB_URL="http://www.warppls.com"
+# DOWNLOADURL=""
+# SETUPFILE=""
+SHORTCUTFILENAME="WarpPLS_7_0.exe"
+AUTHOR="Dao Duy Tung"
+# PERSONALBLOG="https://tungdao.org"
+
+ 
+POL_SetupWindow_Init
+POL_Debug_Init
+ 
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
+ 
+POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+ 
+POL_System_TmpCreate "$PREFIX"
+
+POL_Call POL_Install_msxml6
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_dotnet20
+POL_Call POL_Install_dotnet40
+POL_Call POL_Install_gecko
+ 
+cd "$POL_System_TmpDir"
+ 
+if [ "$POL_SELECTED_FILE" ]; then
+    SetupFile="$POL_SELECTED_FILE"
+else
+# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+    INSTALL_METHOD="LOCAL"
+    
+    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
+        POL_Download "$DOWNLOADURL" ""
+        SetupFile="$POL_System_TmpDir/$SETUPFILE"
+    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
+        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+        SetupFile="$APP_ANSWER"
+    fi
+fi
+
+# Installation
+Set_OS "$OSVERSION"
+ 
+
+POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$SetupFile"
+POL_Wine_WaitExit "$TITLE"
+
+POL_System_TmpDelete
+ 
+POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
+POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
+
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2020-01-30) 
# Distribution used to test : MacOS Mojave 10.14
# Author : Dao Duy Tung
# PlayOnMac: 3.0.3

# CHANGELOGS
# Disable method DOWNLOAD
# Removed dotnet30
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="WarpPLS 7"
PREFIX="TungDaoWarpPLS"
WORKING_WINE_VERSION="3.0.3"
OSVERSION="win10"


EDITOR="Ned Kock"
WEB_URL="http://www.warppls.com"
# DOWNLOADURL=""
# SETUPFILE=""
SHORTCUTFILENAME="WarpPLS_7_0.exe"
AUTHOR="Dao Duy Tung"
# PERSONALBLOG="https://tungdao.org"

 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
 
POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_System_TmpCreate "$PREFIX"

POL_Call POL_Install_msxml6
POL_Call POL_Install_corefonts
POL_Call POL_Install_dotnet20
POL_Call POL_Install_dotnet40
POL_Call POL_Install_gecko
 
cd "$POL_System_TmpDir"
 
if [ "$POL_SELECTED_FILE" ]; then
    SetupFile="$POL_SELECTED_FILE"
else
# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
    INSTALL_METHOD="LOCAL"
    
    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        POL_Download "$DOWNLOADURL" ""
        SetupFile="$POL_System_TmpDir/$SETUPFILE"
    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SetupFile="$APP_ANSWER"
    fi
fi

# Installation
Set_OS "$OSVERSION"
 

POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupFile"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete
 
POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Edité par tungdao

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