File: Makefile.PL

package info (click to toggle)
libfile-copy-link-perl 0.140-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 148 kB
  • sloc: perl: 460; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 570 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Created by Build.PL
use 5.006;
use strict;
use ExtUtils::MakeMaker;
my $args = {
          'NAME' => 'File::Copy::Link',
          'AUTHOR' => 'Robin Barker <rmbarker@cpan.org>',
          'ABSTRACT_FROM' => 'lib/File/Copy/Link.pm',
          'PL_FILES' => {},
          'EXE_FILES' => [
                           'copylink'
                         ],
          'PREREQ_PM' => {
                           'File::Spec' => 0,
                           'File::Copy' => 0
                         },
          'VERSION' => '0.140'
        };

WriteMakefile( %$args );