Dinosaur' Echecs

Informations

Créateur Messages
DelK

Attention

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

Informations

Plate-formes :
Téléchargements : 6526
Wine: 1.7.27

Retours d'expérience

Description

Sign 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.

  • A fun way for children to learn to play chess
  • Over 20 mini games and puzzles
  • Play simplified and full chess games against the dinosaurs

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.

  • Improve IQ scores
  • Increase concentration
  • Challenges gifted children
  • Helps developmental and abstract thinking in children
  • Potentially helps underachievers
  • Develops critical thinking skills

Code source

#!/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:

Contribuer
Membre Messages
DelK Mercredi 7 Janvier 2015 à 15:43
DelK

Information

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

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

Nouveau code source

#!/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

Réponses