File: Makefile.PL

package info (click to toggle)
libstring-glob-permute-perl 0.01-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 58; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
######################################################################
# Makefile.PL for String::Glob::Permute
# 2008, Mike Schilli <cpan@perlmeister.com>
######################################################################
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'         => 'String::Glob::Permute',
    'VERSION_FROM' => 'Permute.pm', # finds $VERSION
    'PREREQ_PM'    => {}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'Permute.pm',
       AUTHOR     => 'Mike Schilli <cpan@perlmeister.com>') : ()),
);