File: Makefile.PL

package info (click to toggle)
libmodule-optional-perl 0.03-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 140 kB
  • sloc: perl: 102; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME         => 'Module::Optional',
    VERSION_FROM => 'lib/Module/Optional.pm', # finds $VERSION
    AUTHOR       => 'Ivor Williams ()',
    ABSTRACT     => '',
    PREREQ_PM    => {
                     'Test::Simple' => 0.44,
                    },
    LICENSE      => 'perl',
);