File: libnet-remctl-perl.install

package info (click to toggle)
remctl 3.18-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,612 kB
  • sloc: ansic: 19,504; sh: 5,386; perl: 1,778; java: 740; makefile: 715; xml: 502; python: 430
file content (20 lines) | stat: -rwxr-xr-x 472 bytes parent folder | download | duplicates (8)
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