This file is indexed.

/usr/bin/dh_auto_clean_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
#!/usr/bin/perl -w

=head1 NAME

dh_auto_clean_nant - automatically cleans up after a nant build

=cut

use strict;
use Debian::Debhelper::Dh_Lib;

=head1 SYNOPSIS

B<dh_auto_clean_nant> [S<I<debhelper options>>]

=head1 DESCRIPTION

dh_auto_clean_nant is a debhelper program that tries to automatically clean up
after a nant build.

=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", "clean", @{$dh{U_PARAMS}});

=head1 SEE ALSO

L<debhelper(7)>

This program is a part of cli-common-dev.

=head1 AUTHOR

This program is partly based on dh_auto_clean developed by Joey Hess <joeyh@debian.org>

=cut