Psiphon3
Informations
Créateur | Messages |
---|---|
Ueliton
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience2 0 DescriptionPsiphon is an award winning circumvention system that uses a combination of secure communication and obfuscation technologies (VPN, SSH and HTTP Proxy). Code source#!/usr/bin/env playonlinux-bash # **PlayOnLinux 4.2.8** # Wine version tested: It works on all versions # Distributions used to test: Fedora 21 Gnome and 22 XFCE, openSUSE 13.2 x86_64, Linux Mint Debian amd64 # Psiphon version: 3 # Based on community.linuxmint.com: http://community.linuxmint.com/tutorial/view/1926 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="Psiphon3" TITLE="Psiphon3" WINESYSTEM="" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2583 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Psiphon Inc." "https://psiphon.ca" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINESYSTEM" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" POL_System_SetArch "auto" # Creating Temp directory ---------------- POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Some dependencies mkdir "$WINEPREFIX/drive_c/windows/syswow64" POL_Call POL_Install_winhttp POL_Call POL_Install_wininet # Install Method -------------------------- POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" POL_Download "$BINU_SERVER/98561634667-9219adc5c42107c4/psiphon3.exe" "a25ca0b1b39a7f3d8a5e8b4add90537f" POL_Wine_WaitBefore "$TITLE" fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file')" "$TITLE" POL_Wine_WaitBefore "$TITLE" cp "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/" fi # Delete temp directory -------------------------- POL_System_TmpDelete # Create a launcher POL_Shortcut "psiphon*.exe" "$TITLE" # Using "*", if user need install other version POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Ueliton | Dimanche 2 Aoüt 2015 à 18:25 |
Ueliton
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -0,0 +1,63 @@ +#!/usr/bin/env playonlinux-bash +# **PlayOnLinux 4.2.8** +# Wine version tested: It works on all versions +# Distributions used to test: Fedora 21 Gnome and 22 XFCE, openSUSE 13.2 x86_64, Linux Mint Debian amd64 +# Psiphon version: 3 +# Based on community.linuxmint.com: http://community.linuxmint.com/tutorial/view/1926 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="Psiphon3" +TITLE="Psiphon3" +WINESYSTEM="" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2583 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Psiphon Inc." "https://psiphon.ca" "$AUTHOR" "$PREFIX" + +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINESYSTEM" +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" +POL_System_SetArch "auto" +# Creating Temp directory ---------------- +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +# Some dependencies +mkdir "$WINEPREFIX/drive_c/windows/syswow64" +POL_Call POL_Install_winhttp +POL_Call POL_Install_wininet + +# Install Method -------------------------- +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" + POL_Download "$BINU_SERVER/98561634667-9219adc5c42107c4/psiphon3.exe" "a25ca0b1b39a7f3d8a5e8b4add90537f" + POL_Wine_WaitBefore "$TITLE" +fi +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + cp "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/" +fi +# Delete temp directory -------------------------- +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "psiphon*.exe" "$TITLE" # Using "*", if user need install other version +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # **PlayOnLinux 4.2.8** # Wine version tested: It works on all versions # Distributions used to test: Fedora 21 Gnome and 22 XFCE, openSUSE 13.2 x86_64, Linux Mint Debian amd64 # Psiphon version: 3 # Based on community.linuxmint.com: http://community.linuxmint.com/tutorial/view/1926 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="Psiphon3" TITLE="Psiphon3" WINESYSTEM="" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2583 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Psiphon Inc." "https://psiphon.ca" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINESYSTEM" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" POL_System_SetArch "auto" # Creating Temp directory ---------------- POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Some dependencies mkdir "$WINEPREFIX/drive_c/windows/syswow64" POL_Call POL_Install_winhttp POL_Call POL_Install_wininet # Install Method -------------------------- POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" POL_Download "$BINU_SERVER/98561634667-9219adc5c42107c4/psiphon3.exe" "a25ca0b1b39a7f3d8a5e8b4add90537f" POL_Wine_WaitBefore "$TITLE" fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file')" "$TITLE" POL_Wine_WaitBefore "$TITLE" cp "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/" fi # Delete temp directory -------------------------- POL_System_TmpDelete # Create a launcher POL_Shortcut "psiphon*.exe" "$TITLE" # Using "*", if user need install other version POL_SetupWindow_Close exit 0 Réponses |
Ueliton | Dimanche 2 Aoüt 2015 à 0:10 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,58 @@ +#!/usr/bin/env playonlinux-bash +# **PlayOnLinux 4.2.8** +# Wine version tested: It works on all versions +# Distributions used to test: Fedora 21 Gnome and 22 XFCE, openSUSE 13.2 x86_64, Linux Mint Debian amd64 +# FormatFactory version: 3 +# Based on community.linuxmint.com: http://community.linuxmint.com/tutorial/view/1926 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="Psiphon3" +TITLE="Psiphon3" +WINESYSTEM="" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2583 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Psiphon Inc." "https://psiphon.ca" "$AUTHOR" "$PREFIX" + +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINESYSTEM" +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" +POL_System_SetArch "auto" + +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" +# Install Method +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98561634667-9219adc5c42107c4/psiphon3.exe" "a25ca0b1b39a7f3d8a5e8b4add90537f" + POL_Wine_WaitBefore "$TITLE" +fi +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + mv "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/" +fi + +# Some dependencies +mkdir "$WINEPREFIX/drive_c/windows/syswow64" +POL_Call POL_Install_wininet +POL_Call POL_Install_winhttp +# Create a launcher +POL_Shortcut "psiphon*.exe" "$TITLE" # Using "*", if user need install other version +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # **PlayOnLinux 4.2.8** # Wine version tested: It works on all versions # Distributions used to test: Fedora 21 Gnome and 22 XFCE, openSUSE 13.2 x86_64, Linux Mint Debian amd64 # FormatFactory version: 3 # Based on community.linuxmint.com: http://community.linuxmint.com/tutorial/view/1926 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="Psiphon3" TITLE="Psiphon3" WINESYSTEM="" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2583 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Psiphon Inc." "https://psiphon.ca" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINESYSTEM" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" POL_System_SetArch "auto" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/" # Install Method POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98561634667-9219adc5c42107c4/psiphon3.exe" "a25ca0b1b39a7f3d8a5e8b4add90537f" POL_Wine_WaitBefore "$TITLE" fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file')" "$TITLE" POL_Wine_WaitBefore "$TITLE" mv "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/" fi # Some dependencies mkdir "$WINEPREFIX/drive_c/windows/syswow64" POL_Call POL_Install_wininet POL_Call POL_Install_winhttp # Create a launcher POL_Shortcut "psiphon*.exe" "$TITLE" # Using "*", if user need install other version POL_SetupWindow_Close exit 0 RéponsesDimanche 2 Aoüt 2015 à 0:13
|
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