Cleaner solution to plugin-included core files.
[kugel-rb.git] / tools / release / voices.pl
bloba05f70611128cc0fcdcad6d2c7d4af074a3a7501
1 #!/usr/bin/perl
3 $version="3.0";
5 my $verbose;
6 if($ARGV[0] eq "-v") {
7 $verbose =1;
8 shift @ARGV;
11 my $doonly;
12 if($ARGV[0]) {
13 $doonly = $ARGV[0];
14 print "only build $doonly\n" if($verbose);
17 # made once for all targets
18 sub runone {
19 my ($dir, $select, $newl)=@_;
20 my $a;
22 if($doonly && ($doonly ne $dir)) {
23 return;
26 mkdir "build-$dir";
27 chdir "build-$dir";
28 print "Build in build-$dir\n" if($verbose);
30 # build the manual(s)
31 $a = buildit($dir, $select, $newl);
33 chdir "..";
35 my $o="build-$dir/english.voice";
36 if (-f $o) {
37 my $newo="output/$dir-$version-english.zip";
38 system("cp $o output/$dir-$version-english.voice");
39 system("mkdir -p .rockbox/langs");
40 system("cp $o .rockbox/langs");
41 system("zip -r $newo .rockbox");
42 system("rm -rf .rockbox");
43 print "moved $o to $newo\n" if($verbose);
46 print "remove all contents in build-$dir\n" if($verbose);
47 system("rm -rf build-$dir");
49 return $a;
52 sub buildit {
53 my ($dir, $select, $newl)=@_;
55 `rm -rf * >/dev/null 2>&1`;
57 # V (voice), F (festival), L (lame), [blank] (English)
58 my $c = sprintf('echo -e "%s\n%sa\nv\n\n\nf\n\n" | ../tools/configure',
59 $select, $newl?'\n':"");
61 print "C: $c\n" if($verbose);
62 `$c`;
64 print "Run 'make voice'\n" if($verbose);
65 print `make voice 2>/dev/null`;
68 # run make in tools first to make sure they're up-to-date
69 `(cd tools && make ) >/dev/null 2>&1`;
71 `rm -f /home/dast/tmp/rockbox-voices-$version/voice-pool/*`;
72 $ENV{'POOL'}="/home/dast/tmp/rockbox-voices-$version/voice-pool";
74 runone("player", "player", 1);
75 runone("recorder", "recorder", 1);
76 runone("fmrecorder", "fmrecorder", 1);
77 runone("recorderv2", "recorderv2", 1);
78 runone("ondiosp", "ondiosp", 1);
79 runone("ondiofm", "ondiofm", 1);
80 runone("h100", "h100");
81 runone("h120", "h120");
82 runone("h300", "h300");
83 runone("ipodcolor", "ipodcolor");
84 runone("ipodnano", "ipodnano");
85 runone("ipod4gray", "ipod4g");
86 runone("ipodvideo", "ipodvideo", 1);
87 runone("ipod3g", "ipod3g");
88 runone("ipod1g2g", "ipod1g2g");
89 runone("iaudiox5", "x5");
90 runone("iaudiom5", "m5");
91 runone("iaudiom3", "m3");
92 runone("ipodmini2g", "ipodmini2g");
93 runone("ipodmini1g", "ipodmini");
94 runone("h10", "h10");
95 runone("h10_5gb", "h10_5gb");
96 runone("gigabeatf", "gigabeatf");
97 runone("sansae200", "e200");
98 runone("sansac200", "c200");
99 runone("mrobe100", "mrobe100");
100 #runone("cowond2", "cowond2");