Railroad Pioneer
Informations
| Creator | Nachricht |
|---|---|
andykimpe
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionStrategy / business simulator, 2003: Be a pioneer and build the most famous transcontinental railroad tracks in the United States of America throughout the 19th century. Source code#!/bin/bash
# Date : (2015-12-23 20-00)
# Last revision : see changelog
# Wine version used : 2.22
# Distribution used to test : Fedora 23
# PlayOnLinux: 4.2.9
# Author : andykimpe
#
#
# CHANGELOG:
# [andykimpe] (2015-12-23 20-00)
# First script (Wine 1.4.1).
# [Dadu042] (2019-12-24)
# Wine 2.0 -> 2.22
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Railroad Pioneer"
PREFIX="Railroad_Pioneer"
WORKING_WINE_VERSION="2.22"
# Start the script
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"
POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_SetupWindow_InstallMethod "LOCAL,CD"
if [ "$INSTALL_METHOD" = "CD" ]; then
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "Setup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$CDROM/Setup.exe"
POL_Wine_WaitExit "$TITLE"
else
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
fi
POL_SetupWindow_VMS "256"
Set_Managed "Off"
POL_Shortcut "Railroad.exe" "$TITLE" "" "" "Game;"
POL_SetupWindow_Close
exit |
Contributions
Filters:
Contribute| Member | Nachricht |
| Dadu042 | Tuesday 24 December 2019 at 17:19 |
|
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,30 +1,37 @@ #!/bin/bash # Date : (2015-12-23 20-00) -# Last revision : (2015-12-23 20-00) -# Wine version used : 1.4.1 +# Last revision : see changelog +# Wine version used : 2.22 # Distribution used to test : Fedora 23 # PlayOnLinux: 4.2.9 # Author : andykimpe - +# +# +# CHANGELOG: +# [andykimpe] (2015-12-23 20-00) +# First script (Wine 1.4.1). +# [Dadu042] (2019-12-24) +# Wine 2.0 -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Railroad Pioneer" PREFIX="Railroad_Pioneer" -WORKING_WINE_VERSION="2.0" +WORKING_WINE_VERSION="2.22" # Start the script POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX" - + +POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" - POL_SetupWindow_InstallMethod "LOCAL,CD" @@ -45,8 +52,7 @@ POL_SetupWindow_VMS "256" Set_Managed "Off" -POL_Shortcut "Railroad.exe" "$TITLE" +POL_Shortcut "Railroad.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_Close - exit \ No newline at end of file New source code#!/bin/bash
# Date : (2015-12-23 20-00)
# Last revision : see changelog
# Wine version used : 2.22
# Distribution used to test : Fedora 23
# PlayOnLinux: 4.2.9
# Author : andykimpe
#
#
# CHANGELOG:
# [andykimpe] (2015-12-23 20-00)
# First script (Wine 1.4.1).
# [Dadu042] (2019-12-24)
# Wine 2.0 -> 2.22
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Railroad Pioneer"
PREFIX="Railroad_Pioneer"
WORKING_WINE_VERSION="2.22"
# Start the script
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"
POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_SetupWindow_InstallMethod "LOCAL,CD"
if [ "$INSTALL_METHOD" = "CD" ]; then
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "Setup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$CDROM/Setup.exe"
POL_Wine_WaitExit "$TITLE"
else
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
fi
POL_SetupWindow_VMS "256"
Set_Managed "Off"
POL_Shortcut "Railroad.exe" "$TITLE" "" "" "Game;"
POL_SetupWindow_Close
exit Antworten |
| andykimpe | Thursday 2 March 2017 at 2:46 |
andykimpe
|
WarningThis update has not been approved yet by the team. Nachrichtupdate wine version for 2.0 stable Differences@@ -12,7 +12,7 @@ TITLE="Railroad Pioneer" PREFIX="Railroad_Pioneer" -WORKING_WINE_VERSION="1.4.1" +WORKING_WINE_VERSION="2.0" # Start the script POL_SetupWindow_Init New source code#!/bin/bash
# Date : (2015-12-23 20-00)
# Last revision : (2015-12-23 20-00)
# Wine version used : 1.4.1
# Distribution used to test : Fedora 23
# PlayOnLinux: 4.2.9
# Author : andykimpe
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Railroad Pioneer"
PREFIX="Railroad_Pioneer"
WORKING_WINE_VERSION="2.0"
# Start the script
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_SetupWindow_InstallMethod "LOCAL,CD"
if [ "$INSTALL_METHOD" = "CD" ]; then
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "Setup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$CDROM/Setup.exe"
POL_Wine_WaitExit "$TITLE"
else
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
fi
POL_SetupWindow_VMS "256"
Set_Managed "Off"
POL_Shortcut "Railroad.exe" "$TITLE"
POL_SetupWindow_Close
exit Antworten |
| andykimpe | Wednesday 23 December 2015 at 17:48 |
andykimpe
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,52 @@ +#!/bin/bash +# Date : (2015-12-23 20-00) +# Last revision : (2015-12-23 20-00) +# Wine version used : 1.4.1 +# Distribution used to test : Fedora 23 +# PlayOnLinux: 4.2.9 +# Author : andykimpe + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Railroad Pioneer" +PREFIX="Railroad_Pioneer" +WORKING_WINE_VERSION="1.4.1" + +# Start the script +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + + + +POL_SetupWindow_InstallMethod "LOCAL,CD" + +if [ "$INSTALL_METHOD" = "CD" ]; then + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "Setup.exe" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$CDROM/Setup.exe" + POL_Wine_WaitExit "$TITLE" +else + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" + POL_Wine_WaitExit "$TITLE" +fi + +POL_SetupWindow_VMS "256" +Set_Managed "Off" + +POL_Shortcut "Railroad.exe" "$TITLE" + +POL_SetupWindow_Close + +exit \ No newline at end of file New source code#!/bin/bash
# Date : (2015-12-23 20-00)
# Last revision : (2015-12-23 20-00)
# Wine version used : 1.4.1
# Distribution used to test : Fedora 23
# PlayOnLinux: 4.2.9
# Author : andykimpe
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Railroad Pioneer"
PREFIX="Railroad_Pioneer"
WORKING_WINE_VERSION="1.4.1"
# Start the script
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_SetupWindow_InstallMethod "LOCAL,CD"
if [ "$INSTALL_METHOD" = "CD" ]; then
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "Setup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$CDROM/Setup.exe"
POL_Wine_WaitExit "$TITLE"
else
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
fi
POL_SetupWindow_VMS "256"
Set_Managed "Off"
POL_Shortcut "Railroad.exe" "$TITLE"
POL_SetupWindow_Close
exit AntwortenThursday 24 December 2015 at 0:46
|
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
Install this program