This file is indexed.

/usr/share/perl5/Debian/Debhelper/Sequence/haskell.pm is in dh-haskell 0.1.

This file is owned by root:root, with mode 0o644.

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
#!/usr/bin/perl
use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;
use constant USE_LEGACY => 1;

add_command_options( 'dh_makeshlibs', '--noscripts', '-XlibHS' );
add_command_options( 'dh_shlibdeps', '-u -xlibgmp10 --ignore-missing-info' );

if (USE_LEGACY) {
    add_command_options( 'dh_shlibdeps', '-XlibHS' );
}

if (USE_LEGACY) {
    add_command_options( 'dh_gencontrol',
        '-u-DGHC-Package=${haskell:ghc-package}' );
}

# We must forbid debhelper compress interface description files,
# otherwise hoogle would be unhappy. FIXME: It it true?
add_command_options( 'dh_compress', '-X.txt' );
insert_after( 'dh_installchangelogs', 'dh_buildinfo' );
1;