summaryrefslogtreecommitdiffstats
path: root/www/dailysrc.pl
blob: 0143909c39637d43b3328ba8abd43c3e5d85b54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/perl

$basedir = "/home/dast/rockbox-build/daily-build/";

opendir(DIR, $basedir) or
    die "Can't opendir($basedir)";
@tarballs = sort grep { /^rockbox-daily-/ } readdir(DIR);
closedir DIR;

for ( sort {$b cmp $a} @tarballs ) {
    $size = (stat("$basedir/$_"))[7];
    $log = "";
    if (/-(\d+)/) {
        $date = $1;
        if ( -f "$basedir/changes-$date.html") {
            $log = "<a href=\"daily/changes-$date.html\">Changes done $date</a>";
        }
    }
    print "$log\n";
    last;
}