/usr/bin/dh_aqbanking is in libaqbanking-dev 5.6.4beta-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 30 31 32 33 34 35 36 37 38 39 | #!/usr/bin/perl -w
=head1 NAME
dh_aqbanking - substitutes the correct AqBanking dependencies
=cut
use strict;
use Debian::Debhelper::Dh_Lib;
=head1 SYNOPSIS
B<dh_aqbanking>
=head1 DESCRIPTION
B<dh_aqbanking> is a debhelper program that is responsible for generating
the B<${aqbanking:Depends}> substitutions and adding them to substvars files.
=cut
init();
foreach my $package (@{$dh{DOPACKAGES}}) {
addsubstvar($package, "aqbanking:Depends", 'libaqbanking35-plugins');
}
=head1 SEE ALSO
L<debhelper(7)>
This program is a part of libaqbanking35-dev.
=head1 AUTHOR
Micha Lenk <micha@debian.org>
=cut
|