This file is indexed.

/usr/bin/dh_aspell-simple is in dictionaries-common-dev 1.27.2.

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

=head1 NAME

dh_aspell-simple - Call installdeb-aspell with --aspell-simple option

=cut

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

=head1 SYNOPSIS

B<dh_aspell-simple> [S<I<debhelper options>>]

=head1 DESCRIPTION

dh-aspell-simple calls L<installdeb-aspell(1)> with --aspell-simple
option enabled.

This option can only be enabled for pristine aspell dictionaries
created with aspell proc utility, like those avaivalable from the
aspell home page, otherwise this option will make program fail.

It is mostly intended for use from debhelper sequence
aspell_simple.pm.
A simple debian/rules file for those dictionaries might then look like

 # ===== 8< =====
 #!/usr/bin/make -f

 %:
         dh $@ --with aspell-simple

 # this is not a GNU autoconf/automake build system
 override_dh_auto_configure:
         ./configure
 # ===== >8 =====

=cut

init();

doit("installdeb-aspell", "--aspell-simple")