summaryrefslogtreecommitdiff
path: root/tools/release/voices.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/voices.pl')
-rwxr-xr-xtools/release/voices.pl44
1 files changed, 34 insertions, 10 deletions
diff --git a/tools/release/voices.pl b/tools/release/voices.pl
index d51c3208df..056f6d06a9 100755
--- a/tools/release/voices.pl
+++ b/tools/release/voices.pl
@@ -1,7 +1,6 @@
1#!/usr/bin/perl 1#!/usr/bin/perl
2 2
3require "../builds.pm"; 3$version="3.4";
4my $version = $publicrelease;
5 4
6my $verbose; 5my $verbose;
7if($ARGV[0] eq "-v") { 6if($ARGV[0] eq "-v") {
@@ -17,7 +16,7 @@ if($ARGV[0]) {
17 16
18# made once for all targets 17# made once for all targets
19sub runone { 18sub runone {
20 my ($dir)=@_; 19 my ($dir, $select, $newl)=@_;
21 my $a; 20 my $a;
22 21
23 if($doonly && ($doonly ne $dir)) { 22 if($doonly && ($doonly ne $dir)) {
@@ -29,7 +28,7 @@ sub runone {
29 print "Build in buildv-$dir\n" if($verbose); 28 print "Build in buildv-$dir\n" if($verbose);
30 29
31 # build the manual(s) 30 # build the manual(s)
32 $a = buildit($dir); 31 $a = buildit($dir, $select, $newl);
33 32
34 chdir ".."; 33 chdir "..";
35 34
@@ -51,11 +50,13 @@ sub runone {
51}; 50};
52 51
53sub buildit { 52sub buildit {
54 my ($model)=@_; 53 my ($dir, $select, $newl)=@_;
55 54
56 `rm -rf * >/dev/null 2>&1`; 55 `rm -rf * >/dev/null 2>&1`;
57 56
58 my $c = "../tools/configure --type=av --target=$model --language=0 --tts=f"; 57 # V (voice), F (festival), L (lame), [blank] (English)
58 my $c = sprintf('printf "%s\n%sa\nv\n\n\nf\n\n" | ../tools/configure',
59 $select, $newl?'\n':"");
59 60
60 print "C: $c\n" if($verbose); 61 print "C: $c\n" if($verbose);
61 `$c`; 62 `$c`;
@@ -74,8 +75,31 @@ my $pool="$home/tmp/rockbox-voices-$version/voice-pool";
74`rm -f $pool/*`; 75`rm -f $pool/*`;
75$ENV{'POOL'}="$pool"; 76$ENV{'POOL'}="$pool";
76 77
77for my $b (&stablebuilds) { 78runone("player", "player", 1);
78 next if ($builds{$b}{configname} < 3); # no variants 79runone("recorder", "recorder", 1);
80runone("fmrecorder", "fmrecorder", 1);
81runone("recorderv2", "recorderv2", 1);
82runone("ondiosp", "ondiosp", 1);
83runone("ondiofm", "ondiofm", 1);
84runone("h100", "h100");
85runone("h120", "h120");
86runone("h300", "h300");
87runone("ipodcolor", "ipodcolor");
88runone("ipodnano", "ipodnano");
89runone("ipod4gray", "ipod4g");
90runone("ipodvideo", "ipodvideo", 1);
91runone("ipod3g", "ipod3g");
92runone("ipod1g2g", "ipod1g2g");
93runone("iaudiox5", "x5");
94runone("iaudiom5", "m5");
95runone("iaudiom3", "m3");
96runone("ipodmini2g", "ipodmini2g");
97runone("ipodmini1g", "ipodmini");
98runone("h10", "h10");
99runone("h10_5gb", "h10_5gb");
100runone("gigabeatf", "gigabeatf");
101runone("sansae200", "e200");
102runone("sansac200", "c200");
103runone("mrobe100", "mrobe100");
104#runone("cowond2", "cowond2");
79 105
80 runone($b);
81}