Dinosaur' Echecs
Informations
Creator | Message |
---|---|
DelK
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks0 0 DescriptionSign up to Professor MacDinosaur's chess class. You will grow from a hatchling, fresh from the egg, to a huge dinosaur ready to take on the Tyrannosaurus Rex. The action takes you through different parts of the dinosaur's world from jungles to forests. Here you learn the chess skills thet will help you grow enough to defeat the other dinosaurs in battle.
Entertaining and challenging Chess is Good for you! Playing chess gives brains of any age a good workout. Kids especially benefit from learning and playing the game.
Source code#!/bin/bash # Date : (2014-09-23 15:00) # Last revision : (2015-01-07 15:33) # Wine version used : 1.7.27 # Distribution used to test : XUbuntu 14.04 - OSX 10.10 # Author : Quentin Delrée [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Dinosaur' Echecs" PREFIX="dinosaurechecs" APP_AUTHOR="Universis Technology Ltd" APP_URL="http://www.dinosaurchess.com/website/default.shtml" APP_SETUP_FILE="setup.exe" APP_WINE_VER="1.7.27" APP_SHORTCUT_NAME="Dinosaur' Echecs" APP_SHORTUCT_FILE="Dinosaur’ Echecs.exe" # Variables du script setup_file="" POL_SetupWindow_Init POL_Debug_Init # Informations POL_SetupWindow_presentation "$TITLE" "$APP_AUTHOR" "$APP_URL" "Quentin Delrée" "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,CD" if [ $INSTALL_METHOD = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" setup_file="$APP_ANSWER" else POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "$APP_SETUP_FILE" setup_file="$CDROM/$APP_SETUP_FILE" fi # Installation POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$APP_WINE_VER" Set_OS "winxp" "sp3" #POL_Call POL_Install_Flashplayer_ActiveX Doesn't work... Replace by this : POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://fpdownload.macromedia.com/get/flashplayer/pdc/16.0.0.235/install_flash_player_ax.exe" "caec7ccc58390c704f895819b177f87e" POL_Wine start /unix "$POL_System_TmpDir/install_flash_player_ax.exe -install" POL_Wine_WaitExit "$ITLE" POL_System_TmpDelete POL_Wine start /unix "$setup_file" POL_Wine_WaitExit "$ITLE" POL_Shortcut "$APP_SHORTUCT_FILE" "$APP_SHORTCUT_NAME" POL_SetupWindow_message "Your application has been installed successfully." "$TITLE" POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
DelK | Wednesday 7 January 2015 at 15:43 |
DelK
|
InformationThis update has been approved by the team. Differences@@ -0,0 +1,57 @@ +#!/bin/bash +# Date : (2014-09-23 15:00) +# Last revision : (2015-01-07 15:33) +# Wine version used : 1.7.27 +# Distribution used to test : XUbuntu 14.04 - OSX 10.10 +# Author : Quentin Delrée + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Dinosaur' Echecs" +PREFIX="dinosaurechecs" +APP_AUTHOR="Universis Technology Ltd" +APP_URL="http://www.dinosaurchess.com/website/default.shtml" +APP_SETUP_FILE="setup.exe" +APP_WINE_VER="1.7.27" +APP_SHORTCUT_NAME="Dinosaur' Echecs" +APP_SHORTUCT_FILE="Dinosaur’ Echecs.exe" + + +# Variables du script +setup_file="" + + +POL_SetupWindow_Init +POL_Debug_Init + +# Informations +POL_SetupWindow_presentation "$TITLE" "$APP_AUTHOR" "$APP_URL" "Quentin Delrée" "$PREFIX" +POL_SetupWindow_InstallMethod "LOCAL,CD" +if [ $INSTALL_METHOD = "LOCAL" ]; then + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" + setup_file="$APP_ANSWER" +else + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "$APP_SETUP_FILE" + setup_file="$CDROM/$APP_SETUP_FILE" +fi + +# Installation +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$APP_WINE_VER" +Set_OS "winxp" "sp3" +#POL_Call POL_Install_Flashplayer_ActiveX Doesn't work... Replace by this : + POL_System_TmpCreate "$PREFIX" + cd "$POL_System_TmpDir" + POL_Download "http://fpdownload.macromedia.com/get/flashplayer/pdc/16.0.0.235/install_flash_player_ax.exe" "caec7ccc58390c704f895819b177f87e" + POL_Wine start /unix "$POL_System_TmpDir/install_flash_player_ax.exe -install" + POL_Wine_WaitExit "$ITLE" + POL_System_TmpDelete +POL_Wine start /unix "$setup_file" +POL_Wine_WaitExit "$ITLE" +POL_Shortcut "$APP_SHORTUCT_FILE" "$APP_SHORTCUT_NAME" +POL_SetupWindow_message "Your application has been installed successfully." "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash # Date : (2014-09-23 15:00) # Last revision : (2015-01-07 15:33) # Wine version used : 1.7.27 # Distribution used to test : XUbuntu 14.04 - OSX 10.10 # Author : Quentin Delrée [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Dinosaur' Echecs" PREFIX="dinosaurechecs" APP_AUTHOR="Universis Technology Ltd" APP_URL="http://www.dinosaurchess.com/website/default.shtml" APP_SETUP_FILE="setup.exe" APP_WINE_VER="1.7.27" APP_SHORTCUT_NAME="Dinosaur' Echecs" APP_SHORTUCT_FILE="Dinosaur’ Echecs.exe" # Variables du script setup_file="" POL_SetupWindow_Init POL_Debug_Init # Informations POL_SetupWindow_presentation "$TITLE" "$APP_AUTHOR" "$APP_URL" "Quentin Delrée" "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,CD" if [ $INSTALL_METHOD = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" setup_file="$APP_ANSWER" else POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "$APP_SETUP_FILE" setup_file="$CDROM/$APP_SETUP_FILE" fi # Installation POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$APP_WINE_VER" Set_OS "winxp" "sp3" #POL_Call POL_Install_Flashplayer_ActiveX Doesn't work... Replace by this : POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://fpdownload.macromedia.com/get/flashplayer/pdc/16.0.0.235/install_flash_player_ax.exe" "caec7ccc58390c704f895819b177f87e" POL_Wine start /unix "$POL_System_TmpDir/install_flash_player_ax.exe -install" POL_Wine_WaitExit "$ITLE" POL_System_TmpDelete POL_Wine start /unix "$setup_file" POL_Wine_WaitExit "$ITLE" POL_Shortcut "$APP_SHORTUCT_FILE" "$APP_SHORTCUT_NAME" POL_SetupWindow_message "Your application has been installed successfully." "$TITLE" POL_SetupWindow_Close exit Replies |
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