Codebase list libfile-copy-link-perl / fresh-snapshots/upstream Makefile.PL
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

Makefile.PL @fresh-snapshots/upstreamraw · history · blame

# Created by Build.PL
use 5.006;
use strict;
use ExtUtils::MakeMaker;
my $args = {
          'VERSION' => '0.140',
          'EXE_FILES' => [
                           'copylink'
                         ],
          'ABSTRACT_FROM' => 'lib/File/Copy/Link.pm',
          'PREREQ_PM' => {
                           'File::Spec' => 0,
                           'File::Copy' => 0
                         },
          'NAME' => 'File::Copy::Link',
          'AUTHOR' => 'Robin Barker <rmbarker@cpan.org>',
          'PL_FILES' => {}
        };

WriteMakefile( %$args );