/usr/bin/dh_auto_build_nant is in cli-common-dev 0.9.
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 40 41 42 43 44 45 46 47 48 49 50 | #!/usr/bin/perl -w
=head1 NAME
dh_auto_build_nant - automatically builds a package that is based on nant
=cut
use strict;
use Debian::Debhelper::Dh_Lib;
=head1 SYNOPSIS
B<dh_auto_build> [S<I<debhelper options>>] [S<B<--> I<params>>]
=head1 DESCRIPTION
dh_auto_build_nant is a debhelper program that tries to automatically
build a package that is based on ant.
=head1 OPTIONS
=over 4
=item B<--> I<params>
Pass "params" to the program that is run. These can be used to supplement
or override any standard parameters that dh_auto_build_nant passes.
=back
=cut
init();
doit("nant", @{$dh{U_PARAMS}});
=head1 SEE ALSO
L<debhelper(7)>
This program is a part of cli-common-dev.
=head1 AUTHOR
Mirco Bauer <meebey@debian.org>
This program is partly based on dh_auto_build developed by Joey Hess <joeyh@debian.org>
=cut
|