SQLyog Community

Informations

Créateur Messages
candido Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 6054
Wine: System

Retours d'expérience

Description

"SQLyog : The most complete and easy to use MySQL GUI".

Code source

#!/usr/bin/env playonlinux-bash


# http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_1:_Getting_to_know_Bash

 

# https://s3.amazonaws.com/SQLyog_Community/SQLyog+12.4.3/SQLyog-12.4.3-0.x86Community.exe

 

POL_WIN_TITLE="Install SQLYog Community 12.4.3 - 32bits"


POL_URL_PROG="https://s3.amazonaws.com/SQLyog_Community/SQLyog+12.4.3/SQLyog-12.4.3-0.x86Community.exe"

 

[ "$PLAYONLINUX" = "" ] && exit 0


source "$PLAYONLINUX/lib/sources"


 


POL_SetupWindow_Init

 

POL_SetupWindow_message "Hello" "$POL_WIN_TITLE"

 

POL_SetupWindow_message "Download and install: $POL_URL_PROG" "$POL_WIN_TITLE"

 

POL_SetupWindow_InstallMethod "DOWNLOAD"

 

POL_System_TmpCreate "SQLyog-tmp"


cd "$POL_System_TmpDir"


POL_Download "$POL_URL_PROG" "1bbb01b2c8dbdc905cbfce3c64b40b42"

 

INSTALLER="$POL_System_TmpDir/SQLyog-12.4.3-0.x86Community.exe"

 

POL_Wine_SelectPrefix "SQLyogCommunity"


POL_Wine_PrefixCreate


 


POL_SetupWindow_wait "Installation in progress." "SQLyog community"


POL_Wine "$INSTALLER"


 


POL_System_TmpDelete


 


POL_Shortcut "SQLyogCommunity.exe" "SQLyog Community"

 

POL_SetupWindow_message "Goodbye" "Test"

 

POL_SetupWindow_Close


exit

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Vendredi 10 Mai 2019 à 13:19
Dadu042

Information

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

Messages

Script posted by Candido. Script need standardization.

Differences

@@ -0,0 +1,93 @@
+#!/usr/bin/env playonlinux-bash
+
+
+# http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_1:_Getting_to_know_Bash
+
+ 
+
+# https://s3.amazonaws.com/SQLyog_Community/SQLyog+12.4.3/SQLyog-12.4.3-0.x86Community.exe
+
+ 
+
+POL_WIN_TITLE="Install SQLYog Community 12.4.3 - 32bits"
+
+
+POL_URL_PROG="https://s3.amazonaws.com/SQLyog_Community/SQLyog+12.4.3/SQLyog-12.4.3-0.x86Community.exe"
+
+ 
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+
+
+source "$PLAYONLINUX/lib/sources"
+
+
+ 
+
+
+POL_SetupWindow_Init
+
+ 
+
+POL_SetupWindow_message "Hello" "$POL_WIN_TITLE"
+
+ 
+
+POL_SetupWindow_message "Download and install: $POL_URL_PROG" "$POL_WIN_TITLE"
+
+ 
+
+POL_SetupWindow_InstallMethod "DOWNLOAD"
+
+ 
+
+POL_System_TmpCreate "SQLyog-tmp"
+
+
+cd "$POL_System_TmpDir"
+
+
+POL_Download "$POL_URL_PROG" "1bbb01b2c8dbdc905cbfce3c64b40b42"
+
+ 
+
+INSTALLER="$POL_System_TmpDir/SQLyog-12.4.3-0.x86Community.exe"
+
+ 
+
+POL_Wine_SelectPrefix "SQLyogCommunity"
+
+
+POL_Wine_PrefixCreate
+
+
+ 
+
+
+POL_SetupWindow_wait "Installation in progress." "SQLyog community"
+
+
+POL_Wine "$INSTALLER"
+
+
+ 
+
+
+POL_System_TmpDelete
+
+
+ 
+
+
+POL_Shortcut "SQLyogCommunity.exe" "SQLyog Community"
+
+ 
+
+POL_SetupWindow_message "Goodbye" "Test"
+
+ 
+
+POL_SetupWindow_Close
+
+
+exit
\ No newline at end of file

Nouveau code source

#!/usr/bin/env playonlinux-bash


# http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_1:_Getting_to_know_Bash

 

# https://s3.amazonaws.com/SQLyog_Community/SQLyog+12.4.3/SQLyog-12.4.3-0.x86Community.exe

 

POL_WIN_TITLE="Install SQLYog Community 12.4.3 - 32bits"


POL_URL_PROG="https://s3.amazonaws.com/SQLyog_Community/SQLyog+12.4.3/SQLyog-12.4.3-0.x86Community.exe"

 

[ "$PLAYONLINUX" = "" ] && exit 0


source "$PLAYONLINUX/lib/sources"


 


POL_SetupWindow_Init

 

POL_SetupWindow_message "Hello" "$POL_WIN_TITLE"

 

POL_SetupWindow_message "Download and install: $POL_URL_PROG" "$POL_WIN_TITLE"

 

POL_SetupWindow_InstallMethod "DOWNLOAD"

 

POL_System_TmpCreate "SQLyog-tmp"


cd "$POL_System_TmpDir"


POL_Download "$POL_URL_PROG" "1bbb01b2c8dbdc905cbfce3c64b40b42"

 

INSTALLER="$POL_System_TmpDir/SQLyog-12.4.3-0.x86Community.exe"

 

POL_Wine_SelectPrefix "SQLyogCommunity"


POL_Wine_PrefixCreate


 


POL_SetupWindow_wait "Installation in progress." "SQLyog community"


POL_Wine "$INSTALLER"


 


POL_System_TmpDelete


 


POL_Shortcut "SQLyogCommunity.exe" "SQLyog Community"

 

POL_SetupWindow_message "Goodbye" "Test"

 

POL_SetupWindow_Close


exit

Réponses

Edité par Dadu042