summaryrefslogtreecommitdiff
path: root/debian/libnet-remctl-perl.install
blob: 6e0370864a5ea4d4abdde0c220a5f6bc7a6ec840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl
#
# The directory into which arch-specific Perl modules are installed with
# vendor paths varies based on Perl version, multiarch, and other issues.
# Get the path at package build time from Perl rather than hard-coding an
# expected path.

use 5.006;
use strict;
use warnings;

use Config;

# The modules themselves.
print substr($Config{vendorarch}, 1) . "\n";

# Other files to include in the module package.
print <<'EOF';
usr/share/man/man3/*.3pm
EOF