-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbootstrap
executable file
·81 lines (61 loc) · 2.07 KB
/
bootstrap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#! /bin/sh
# Ce script télécharge une image EToys 'fraiche' et crée à partir de ça une pré-image
# SqueakBot.
#
# En particulier, le script installe les fichiers utiles dans squeakbot-x.y, renomme ce
# qui est nécessaire, compile les dernières traductions, prépare le script d'installation
# pour Windows.
#
# Auteur: Séverin Lemaignan <[email protected]>
SQUEAKBOT_VERSION=2.1
ETOYS_BASE=etoys-4.1.2390
#########################################################################################
SQUEAKBOT=squeakbot-$SQUEAKBOT_VERSION
if [ -d $SQUEAKBOT ]
then
echo "$SQUEAKBOT est déjà présent. Le script ne permet pas pour \
l'instant la mise à jour. Je m'arrête là."
exit 1
fi
if [ ! -f $ETOYS_BASE.tar.gz ]
then
echo "Téléchargement de $ETOYS_BASE..."
wget http://download.sugarlabs.org/sources/sucrose/glucose/etoys/$ETOYS_BASE.tar.gz
fi
if [ ! -d $ETOYS_BASE ]
then
echo "Extraction de $ETOYS_BASE..."
tar xf $ETOYS_BASE.tar.gz
fi
echo "Installation de $SQUEAKBOT..."
mkdir $SQUEAKBOT
#mv $ETOYS_BASE/Content $SQUEAKBOT
cp -r $ETOYS_BASE/Content/* $SQUEAKBOT
#rm -rf $ETOYS_BASE
cd $SQUEAKBOT
mv etoys.image squeakbot.image
mv etoys.changes squeakbot.changes
for pofile in ../po/fr/*.po
do
echo "Compilation de la traduction pour ${pofile}"
msgfmt ${pofile} -o locale/fr/LC_MESSAGES/`basename ${pofile} .po`.mo
done
echo "Configuration du script de l'installeur pour Windows..."
cd ../windows_installer
sed "s/@SQUEAKBOT@/${SQUEAKBOT}/" squeakbot.nsi.in > squeakbot.nsi.tmp
sed "s/@SQUEAKBOT_VERSION@/${SQUEAKBOT_VERSION}/" squeakbot.nsi.tmp > squeakbot.nsi
rm squeakbot.nsi.tmp
cd ..
echo
echo "L'image vierge EToys pour $SQUEAKBOT est prête dans ./$SQUEAKBOT."
echo "Pour finir la préparation, il faut déposer par drag&drop tous les fichiers"
echo "de changeset présents dans changesets/ (dans l'ordre de leur numéro) ainsi"
echo "que les examples présents dans projets."
echo
echo -n "Voulez-vous ouvrir immédiatement l'image (O/N)?"
read answer
if test "$answer" = "O" -o "$answer" = "o";
then
squeak $SQUEAKBOT/squeakbot.image
fi
exit 0