blob: 7c62cfc93f1f172b2bfa3ace2c176b9ebd9f3f8a (
plain)
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
|
#!/usr/bin/perl
($noclean, @ARGV) = @ARGV if $ARGV[0] eq "--noclean";
(undef, $root, @ARGV) = @ARGV if $ARGV[0] eq "--distrib";
$root && @ARGV == 0 or die
"usage: genhdlists [--noclean] --distrib <root distrib>
";
$depslist = "$root/Mandrake/base/depslist.ordered";
$hdlists = "$root/Mandrake/base/hdlists";
open F, $hdlists or die "unable to open $hdlists";
foreach (<F>) {
chomp;
s/\s*#.*$//;
/^\s*$/ and next;
m/^\s*(hdlist\S*\.cz2?)\s+(\S+)\s*(.*)$/ or die "invalid hdlist description \"$_\" in hdlists file";
my ($hdlist, $dir, $descr) = ($1, $2, $3);
my $command = "genhdlist_cz2";
$noclean and $command .= " --noclean";
-e $depslist and $command .= " --ordered-depslist $depslist";
$command .= " -o $root/Mandrake/base/$hdlist $root/$dir";
system($command);
system("touch $root/Mandrake/base/$hdlist");
}
close F;
|