mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
add proper build depends
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3841 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -18,8 +18,8 @@ while ($line = <>) {
|
||||
defined $pkg{$name} or $pkg{$name} = {};
|
||||
$pkg{$name}->{src} = $src;
|
||||
};
|
||||
$line =~ /^Depends: \s*(.+)\s*$/ and do {
|
||||
my @dep = split /,\s*/, $1;
|
||||
$line =~ /^(Build-)?Depends: \s*(.+)\s*$/ and do {
|
||||
my @dep = split /,\s*/, $2;
|
||||
$pkg{$name}->{depends} = \@dep;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,9 +28,6 @@ sub print_category($) {
|
||||
foreach my $depend (@{$pkg->{depends}}) {
|
||||
print "\t\tdepends PACKAGE_$depend\n";
|
||||
}
|
||||
foreach my $need (@{$pkg->{needs}}) {
|
||||
print "\t\tselect PACKAGE_$need\n";
|
||||
}
|
||||
print "\t\thelp\n";
|
||||
print $pkg->{description};
|
||||
print "\n";
|
||||
@@ -66,10 +63,6 @@ while ($line = <>) {
|
||||
my @dep = split /,\s*/, $1;
|
||||
$pkg->{depends} = \@dep;
|
||||
};
|
||||
$line =~ /^Needs: \s*(.+)\s*$/ and do {
|
||||
my @need = split /,\s*/, $1;
|
||||
$pkg->{needs} = \@need;
|
||||
};
|
||||
$line =~ /^Category: \s*(.+)\s*$/ and do {
|
||||
$pkg->{category} = $1;
|
||||
defined $category{$1} or $category{$1} = {};
|
||||
|
||||
Reference in New Issue
Block a user