summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2006-05-14 08:36:39 +0000
committerMike Baker <mbm@openwrt.org>2006-05-14 08:36:39 +0000
commite54cfc1f1f1f24ec59c357e198cf7d69740b15d8 (patch)
tree5db5ab7c13b7fa904b6a3a165086f3417475616c
parent4811f9dcdc666f950551ad27b4d49ad52bb7b9d0 (diff)
downloadmtk-20170518-e54cfc1f1f1f24ec59c357e198cf7d69740b15d8.zip
mtk-20170518-e54cfc1f1f1f24ec59c357e198cf7d69740b15d8.tar.gz
mtk-20170518-e54cfc1f1f1f24ec59c357e198cf7d69740b15d8.tar.bz2
generate package dependancies
SVN-Revision: 3774
-rwxr-xr-xopenwrt/scripts/gen_deps.pl34
1 files changed, 34 insertions, 0 deletions
diff --git a/openwrt/scripts/gen_deps.pl b/openwrt/scripts/gen_deps.pl
new file mode 100755
index 0000000..d4b6c76
--- /dev/null
+++ b/openwrt/scripts/gen_deps.pl
@@ -0,0 +1,34 @@
+#!/usr/bin/perl
+use strict;
+
+my $name;
+my $src;
+my $makefile;
+my %pkg;
+
+my $line;
+while ($line = <>) {
+ chomp $line;
+ $line =~ /^Source-Makefile: \s*(.+\/([^\/]+)\/Makefile)\s*$/ and do {
+ $makefile = $1;
+ $src = $2;
+ };
+ $line =~ /^Package: \s*(.+)\s*$/ and do {
+ $name = $1;
+ defined $pkg{$name} or $pkg{$name} = {};
+ $pkg{$name}->{src} = $src;
+ };
+ $line =~ /^Depends: \s*(.+)\s*$/ and do {
+ my @dep = split /,\s*/, $1;
+ $pkg{$name}->{depends} = \@dep;
+ };
+}
+
+foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
+ print "$name: ";
+ foreach my $dep (@{$pkg{$name}->{depends}}) {
+ print "$dep ";
+ }
+ print "\n\tmake -C ".$pkg{$name}->{src}."\n";
+ print "\n";
+}