Bonjour à tous,
j'avais besoin du logiciel Pronote pour le boulot.
En m'inspirant plus que fortement du code de Tinou, j'ai crée un petit script qui semble fonctionner. Le programme existe juste en français et ne servira pas à grand monde mais puisque c'est fait je vous le soumets. Par contre ce n'est certainement pas très propre vu que c'est une première tentative.
#!/bin/bash
# Date : (2011-10-31 14:00)
# Last revision : N/A
# Wine version used : 1.3.30
# Distribution used to test : Ubuntu 11.10
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonmac.com
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PRONOTE2011"
TITLE="PRONOTE 2011"
URL="http://tele2.index-education.com/telechargement/pn/v21.0/exe/Install_PRNclient_FR2100008.exe"
WORKING_WINE_VERSION="1.3.30"
DOWNLOAD="Téléchargement de PRONOTE 2011 en cours..."
END="$TITLE a été installé correctement"
# Début du script
POL_GetSetupImages "http://www.index-education.com/fr/img/logoAccueil.png" "http://www.index-education.com/fr/img/logoAccueil.png" "$TITLE"
POL_Debug_Init
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Index-Education.com" "www.index-education.com" "Tinou" "$PREFIX"
# Création du préfix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
# Préparation de l'installation
Set_OS "win7"
# Téléchargement du programme
cd "$POL_USER_ROOT/tmp/"
POL_SetupWindow_download "$DOWNLOAD" "$TITLE" "$URL"
# Installation
cd "$POL_USER_ROOT/tmp/"
POL_Wine "Install_PRNclient_FR2100008.exe"
# Nettoyage du dossier temporaire
cd "$POL_USER_ROOT/tmp/"
rm -rf Install_PRNclient_FR2100008.exe
# Création du raccourci
POL_Shortcut "Client PRONOTE 2011.exe" "PRONOTE 2011"
POL_SetupWindow_message "$TITLE a été installé avec succès." "$TITLE"
POL_SetupWindow_Close
exit
description :
http://www.megaupload.com/?d=8QKUSZTB
Edité par teratani