Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

tools: Fixes for release scripts

Change-Id: I2d2184baa5267aec64c48eee13580085feb0d4cb

+4 -4
+1 -1
tools/release/bins.pl
··· 45 45 } 46 46 47 47 print "remove all contents in build-$dir\n" if($verbose); 48 - system("rm -rf build-$dir"); 48 + system("rm -rf buildb-$dir"); 49 49 50 50 return $a; 51 51 };
+3 -3
tools/release/voices.pl
··· 35 35 system("mkdir -p output/$target"); 36 36 system("mkdir -p .rockbox/langs"); 37 37 system("cp $o .rockbox/langs"); 38 + system("cp $lang.lng.talk .rockbox/langs"); 39 + system("cp InvalidVoice_$lang.talk .rockbox/langs"); 38 40 system("zip -q -r $newo .rockbox"); 39 41 system("rm -rf .rockbox"); 40 42 `chmod a+r $newo`; ··· 68 70 # run make in tools first to make sure they're up-to-date 69 71 `(cd tools && make ) >/dev/null 2>&1`; 70 72 71 - if (!defined($ENV{'POOL'}) { 73 + if (!defined($ENV{'POOL'})) { 72 74 my $home=$ENV{'HOME'}; 73 75 my $pool="$home/tmp/rockbox-voices-$version/voice-pool"; 74 76 `mkdir -p $pool`; ··· 82 84 next if ($builds{$b}{voice}); # no variants 83 85 84 86 for my $v (&allvoices) { 85 - my %voice = $voices{$v}; 86 - 87 87 # print " runone $b $v ($voices{$v}->{lang} via $voices{$v}->{defengine})\n"; 88 88 runone($b, $v, $voices{$v}->{lang}, $voices{$v}->{defengine}, 89 89 "-1", $voices{$v}->{engines}->{$voices{$v}->{defengine}});