Quake Live (Steam)

Informations

Creator Message
RobLoach

Warning

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

Informations

Platforms:
Downloads: 16862
Wine: 3.0.3

Feedbacks

Description

Online shooter.

Wikipedia

Source code

#!/bin/bash
#
# CHANGELOG:
# [RobLoach] (2015)
#   First script. 
# [Dadu042] (2019-12-24)
#   Wine 2.12-staging -> 3.0.3
#   POL_RequiredVersion "4.2.12"

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

# Configuration
TITLE="Quake Live"
WEBSITE="http://www.quakelive.com"
DEVELOPER="id Software"
AUTHOR="PlayOnLinux"
PREFIX="quakelive"
WINE_VERSION="3.0.3"

# Start up PlayOnLinux
POL_SetupWindow_Init
POL_SetupWindow_SetID 2407
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"

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

# Create the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Dependencies
Set_OS "win7"

POL_Call POL_Install_steam
SHORTCUT="Steam.exe"
SHORTCUT_IMAGE=""
SHORTCUT_ARGS="-applaunch 282440"

# Create the Shortcut to the program
POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" "Game;"

POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Message
Dadu042 Tuesday 24 December 2019 at 17:08
Dadu042

Information

This update has been approved by the team.

Differences

@@ -1,4 +1,12 @@
 #!/bin/bash
+#
+# CHANGELOG:
+# [RobLoach] (2015)
+#   First script. 
+# [Dadu042] (2019-12-24)
+#   Wine 2.12-staging -> 3.0.3
+#   POL_RequiredVersion "4.2.12"
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
 
@@ -8,7 +16,7 @@
 DEVELOPER="id Software"
 AUTHOR="PlayOnLinux"
 PREFIX="quakelive"
-WINE_VERSION="2.12-staging"
+WINE_VERSION="3.0.3"
 
 # Start up PlayOnLinux
 POL_SetupWindow_Init
@@ -17,6 +25,8 @@
 
 POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"
 
+POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 # Create the Wine Prefix
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"
@@ -31,7 +41,7 @@
 SHORTCUT_ARGS="-applaunch 282440"
 
 # Create the Shortcut to the program
-POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS"
+POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" "Game;"
 
 POL_SetupWindow_Close
 exit
\ No newline at end of file

New source code

#!/bin/bash
#
# CHANGELOG:
# [RobLoach] (2015)
#   First script. 
# [Dadu042] (2019-12-24)
#   Wine 2.12-staging -> 3.0.3
#   POL_RequiredVersion "4.2.12"

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

# Configuration
TITLE="Quake Live"
WEBSITE="http://www.quakelive.com"
DEVELOPER="id Software"
AUTHOR="PlayOnLinux"
PREFIX="quakelive"
WINE_VERSION="3.0.3"

# Start up PlayOnLinux
POL_SetupWindow_Init
POL_SetupWindow_SetID 2407
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"

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

# Create the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Dependencies
Set_OS "win7"

POL_Call POL_Install_steam
SHORTCUT="Steam.exe"
SHORTCUT_IMAGE=""
SHORTCUT_ARGS="-applaunch 282440"

# Create the Shortcut to the program
POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" "Game;"

POL_SetupWindow_Close
exit

Replies

Anonymous
Saturday 23 January 2021 at 21:08
I installed on my ubuntu 20.04 Wine 3.0.3 and POL "4.2.12". Then downloaded this code and maked a .sh executable file. When i launch this file nothing do. Why ?
Saturday 23 January 2021 at 21:52
Code must be in a text file named '.pol'. Easier: use the menu of POL to find the game name and download automatically the script code.
Nitrogen Wednesday 29 November 2017 at 20:52
Nitrogen Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Old version of wine prevented Steam from updating. Haven't tested heavily, but successfully played a few matches w/o noticeable issues.

Differences

@@ -5,13 +5,10 @@
 # Configuration
 TITLE="Quake Live"
 WEBSITE="http://www.quakelive.com"
-DEVELOPER="Quake Live"
-AUTHOR="Rob Loach"
+DEVELOPER="id Software"
+AUTHOR="PlayOnLinux"
 PREFIX="quakelive"
-WINE_VERSION="1.7.34"
-SHORTCUT="Launcher.exe"
-SHORTCUT_IMAGE=""
-SHORTCUT_ARGS=""
+WINE_VERSION="2.12-staging"
 
 # Start up PlayOnLinux
 POL_SetupWindow_Init
@@ -30,6 +27,7 @@
 
 POL_Call POL_Install_steam
 SHORTCUT="Steam.exe"
+SHORTCUT_IMAGE=""
 SHORTCUT_ARGS="-applaunch 282440"
 
 # Create the Shortcut to the program

New source code

#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

# Configuration
TITLE="Quake Live"
WEBSITE="http://www.quakelive.com"
DEVELOPER="id Software"
AUTHOR="PlayOnLinux"
PREFIX="quakelive"
WINE_VERSION="2.12-staging"

# Start up PlayOnLinux
POL_SetupWindow_Init
POL_SetupWindow_SetID 2407
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"

# Create the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Dependencies
Set_OS "win7"

POL_Call POL_Install_steam
SHORTCUT="Steam.exe"
SHORTCUT_IMAGE=""
SHORTCUT_ARGS="-applaunch 282440"

# Create the Shortcut to the program
POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS"

POL_SetupWindow_Close
exit

Replies

petch Friday 4 December 2015 at 23:46
petch

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Add POL_SetupWindow_SetID

Add POL_Debug_Init

Differences

@@ -15,6 +15,9 @@
 
 # Start up PlayOnLinux
 POL_SetupWindow_Init
+POL_SetupWindow_SetID 2407
+POL_Debug_Init
+
 POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"
 
 # Create the Wine Prefix

New source code

#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

# Configuration
TITLE="Quake Live"
WEBSITE="http://www.quakelive.com"
DEVELOPER="Quake Live"
AUTHOR="Rob Loach"
PREFIX="quakelive"
WINE_VERSION="1.7.34"
SHORTCUT="Launcher.exe"
SHORTCUT_IMAGE=""
SHORTCUT_ARGS=""

# Start up PlayOnLinux
POL_SetupWindow_Init
POL_SetupWindow_SetID 2407
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"

# Create the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Dependencies
Set_OS "win7"

POL_Call POL_Install_steam
SHORTCUT="Steam.exe"
SHORTCUT_ARGS="-applaunch 282440"

# Create the Shortcut to the program
POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS"

POL_SetupWindow_Close
exit

Replies

RobLoach Tuesday 17 November 2015 at 2:33
RobLoach

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Quake Live is now only available through Steam.

Differences

@@ -9,9 +9,6 @@
 AUTHOR="Rob Loach"
 PREFIX="quakelive"
 WINE_VERSION="1.7.34"
-DOWNLOAD="http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe"
-DOWNLOAD_MD5="f9fe097fff487d95ef738e6fae45ba01"
-DOWNLOAD_SETUP="QuakeLiveSetup_841.exe"
 SHORTCUT="Launcher.exe"
 SHORTCUT_IMAGE=""
 SHORTCUT_ARGS=""
@@ -27,43 +24,13 @@
 
 # Dependencies
 Set_OS "win7"
-POL_Call POL_Install_corefonts
-POL_Call POL_Install_dotnet35sp1
 
-# Select the installation method
-POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL,STEAM"
-if [ "$INSTALL_METHOD" = "LOCAL" ]
-then
-  # Select and run the file
-  POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation"
-  POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
-  POL_Wine_WaitBefore "$TITLE"
-  POL_Wine start /unix "$APP_ANSWER"
-  POL_Wine_WaitExit "$TITLE"
-elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
-then
-  # Create a temporary directory
-  POL_System_TmpCreate "$PREFIX"
-  cd "$POL_System_TmpDir"
-
-  # Download the program
-  POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5"
-  POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
-
-  # Run the setup
-  POL_Wine_WaitBefore "$TITLE"
-  POL_Wine start /unix "$POL_System_TmpDir/$DOWNLOAD_SETUP"
-  POL_Wine_WaitExit "$TITLE"
-  POL_System_TmpDelete
-elif [ "$INSTALL_METHOD" = "STEAM" ]
-then
-  POL_Call POL_Install_steam
-  SHORTCUT="Steam.exe"
-  SHORTCUT_ARGS="-applaunch 282440"
-fi
+POL_Call POL_Install_steam
+SHORTCUT="Steam.exe"
+SHORTCUT_ARGS="-applaunch 282440"
 
 # Create the Shortcut to the program
 POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS"
 
 POL_SetupWindow_Close
-exit
+exit
\ No newline at end of file

New source code

#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

# Configuration
TITLE="Quake Live"
WEBSITE="http://www.quakelive.com"
DEVELOPER="Quake Live"
AUTHOR="Rob Loach"
PREFIX="quakelive"
WINE_VERSION="1.7.34"
SHORTCUT="Launcher.exe"
SHORTCUT_IMAGE=""
SHORTCUT_ARGS=""

# Start up PlayOnLinux
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"

# Create the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Dependencies
Set_OS "win7"

POL_Call POL_Install_steam
SHORTCUT="Steam.exe"
SHORTCUT_ARGS="-applaunch 282440"

# Create the Shortcut to the program
POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS"

POL_SetupWindow_Close
exit

Replies

Tuesday 17 November 2015 at 7:30
Does it replace all other methods of installation, say LOCAL?
Thursday 19 November 2015 at 8:46
Not sure if LOCAL works anymore. The download file itself isn't even accessible: http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe

Edited by petch

petch Wednesday 21 January 2015 at 18:38
petch

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

- Add POL_SetupWindow_SetID call

- All localization support to POL_SetupWindow_browse

- Remove POL_SetupWindow_wait redundant with POL_Wine_WaitBefore (that supports localization automatically)

- start /unix is probably not required, and then only one of POL_Wine_WaitBefore/POL_Wine_WaitExit may be sufficient, but I can't tell for sure without testing, so left as-is

Differences

@@ -18,6 +18,7 @@
 
 # Start up PlayOnLinux
 POL_SetupWindow_Init
+POL_SetupWindow_SetID 2407
 POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"
 
 # Create the Wine Prefix
@@ -35,8 +36,7 @@
 if [ "$INSTALL_METHOD" = "LOCAL" ]
 then
   # Select and run the file
-  POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation"
-  POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
+  POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE installation"
   POL_Wine_WaitBefore "$TITLE"
   POL_Wine start /unix "$APP_ANSWER"
   POL_Wine_WaitExit "$TITLE"
@@ -48,7 +48,6 @@
 
   # Download the program
   POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5"
-  POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
 
   # Run the setup
   POL_Wine_WaitBefore "$TITLE"

New source code

#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

# Configuration
TITLE="Quake Live"
WEBSITE="http://www.quakelive.com"
DEVELOPER="Quake Live"
AUTHOR="Rob Loach"
PREFIX="quakelive"
WINE_VERSION="1.7.34"
DOWNLOAD="http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe"
DOWNLOAD_MD5="f9fe097fff487d95ef738e6fae45ba01"
DOWNLOAD_SETUP="QuakeLiveSetup_841.exe"
SHORTCUT="Launcher.exe"
SHORTCUT_IMAGE=""
SHORTCUT_ARGS=""

# Start up PlayOnLinux
POL_SetupWindow_Init
POL_SetupWindow_SetID 2407
POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"

# Create the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Dependencies
Set_OS "win7"
POL_Call POL_Install_corefonts
POL_Call POL_Install_dotnet35sp1

# Select the installation method
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL,STEAM"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
  # Select and run the file
  POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE installation"
  POL_Wine_WaitBefore "$TITLE"
  POL_Wine start /unix "$APP_ANSWER"
  POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
  # Create a temporary directory
  POL_System_TmpCreate "$PREFIX"
  cd "$POL_System_TmpDir"

  # Download the program
  POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5"

  # Run the setup
  POL_Wine_WaitBefore "$TITLE"
  POL_Wine start /unix "$POL_System_TmpDir/$DOWNLOAD_SETUP"
  POL_Wine_WaitExit "$TITLE"
  POL_System_TmpDelete
elif [ "$INSTALL_METHOD" = "STEAM" ]
then
  POL_Call POL_Install_steam
  SHORTCUT="Steam.exe"
  SHORTCUT_ARGS="-applaunch 282440"
fi

# Create the Shortcut to the program
POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS"

POL_SetupWindow_Close
exit

Replies

Wednesday 21 January 2015 at 18:54
The "eval_gettext" is for localization, right?
Wednesday 21 January 2015 at 18:58
yes, http://www.playonlinux.com/en/dev-documentation-10.html
Wednesday 21 January 2015 at 19:15
Ok. It's just been a while since I read the docs. Sorry.
Wednesday 21 January 2015 at 23:47
No problem, I should have commented on those problems earlier; None of those is a real showstopper either, even if missing localization support is bad :p
Thursday 3 December 2015 at 1:06
Thanks for the translation efforts!
RobLoach Wednesday 21 January 2015 at 17:19
RobLoach

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Installable from download, setup executable, or Steam.

Differences

@@ -0,0 +1,69 @@
+#!/bin/bash
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+# Configuration
+TITLE="Quake Live"
+WEBSITE="http://www.quakelive.com"
+DEVELOPER="Quake Live"
+AUTHOR="Rob Loach"
+PREFIX="quakelive"
+WINE_VERSION="1.7.34"
+DOWNLOAD="http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe"
+DOWNLOAD_MD5="f9fe097fff487d95ef738e6fae45ba01"
+DOWNLOAD_SETUP="QuakeLiveSetup_841.exe"
+SHORTCUT="Launcher.exe"
+SHORTCUT_IMAGE=""
+SHORTCUT_ARGS=""
+
+# Start up PlayOnLinux
+POL_SetupWindow_Init
+POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"
+
+# Create the Wine Prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WINE_VERSION"
+
+# Dependencies
+Set_OS "win7"
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_dotnet35sp1
+
+# Select the installation method
+POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL,STEAM"
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+  # Select and run the file
+  POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation"
+  POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
+  POL_Wine_WaitBefore "$TITLE"
+  POL_Wine start /unix "$APP_ANSWER"
+  POL_Wine_WaitExit "$TITLE"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+  # Create a temporary directory
+  POL_System_TmpCreate "$PREFIX"
+  cd "$POL_System_TmpDir"
+
+  # Download the program
+  POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5"
+  POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
+
+  # Run the setup
+  POL_Wine_WaitBefore "$TITLE"
+  POL_Wine start /unix "$POL_System_TmpDir/$DOWNLOAD_SETUP"
+  POL_Wine_WaitExit "$TITLE"
+  POL_System_TmpDelete
+elif [ "$INSTALL_METHOD" = "STEAM" ]
+then
+  POL_Call POL_Install_steam
+  SHORTCUT="Steam.exe"
+  SHORTCUT_ARGS="-applaunch 282440"
+fi
+
+# Create the Shortcut to the program
+POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS"
+
+POL_SetupWindow_Close
+exit

New source code

#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

# Configuration
TITLE="Quake Live"
WEBSITE="http://www.quakelive.com"
DEVELOPER="Quake Live"
AUTHOR="Rob Loach"
PREFIX="quakelive"
WINE_VERSION="1.7.34"
DOWNLOAD="http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe"
DOWNLOAD_MD5="f9fe097fff487d95ef738e6fae45ba01"
DOWNLOAD_SETUP="QuakeLiveSetup_841.exe"
SHORTCUT="Launcher.exe"
SHORTCUT_IMAGE=""
SHORTCUT_ARGS=""

# Start up PlayOnLinux
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX"

# Create the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Dependencies
Set_OS "win7"
POL_Call POL_Install_corefonts
POL_Call POL_Install_dotnet35sp1

# Select the installation method
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL,STEAM"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
  # Select and run the file
  POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation"
  POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
  POL_Wine_WaitBefore "$TITLE"
  POL_Wine start /unix "$APP_ANSWER"
  POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
  # Create a temporary directory
  POL_System_TmpCreate "$PREFIX"
  cd "$POL_System_TmpDir"

  # Download the program
  POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5"
  POL_SetupWindow_wait "Installation in progress." "$TITLE installation"

  # Run the setup
  POL_Wine_WaitBefore "$TITLE"
  POL_Wine start /unix "$POL_System_TmpDir/$DOWNLOAD_SETUP"
  POL_Wine_WaitExit "$TITLE"
  POL_System_TmpDelete
elif [ "$INSTALL_METHOD" = "STEAM" ]
then
  POL_Call POL_Install_steam
  SHORTCUT="Steam.exe"
  SHORTCUT_ARGS="-applaunch 282440"
fi

# Create the Shortcut to the program
POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS"

POL_SetupWindow_Close
exit

Replies

Wednesday 21 January 2015 at 18:14
Looks good to me. Approved.
Anonymous
Monday 5 October 2015 at 15:51
Halp, doesn't work anymore on OS X El Capitan.
Friendly update request :-)
Anonymous
Wednesday 27 April 2016 at 10:23
Yes doesnt work on Capitan 10.11.4 please work on it.