1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile
(
($] ge '5.005') ?
(
'AUTHOR' => 'Ron Savage (ron@savage.net.au)',
'ABSTRACT' => 'A simple-to-use interface to Getopt::Long',
) : (),
clean =>
{
FILES => 'blib/* Makefile MANIFEST Getopt-Simple-*'
},
dist =>
{
COMPRESS => 'gzip',
SUFFIX => 'gz'
},
DISTNAME => 'Getopt-Simple',
NAME => 'Getopt::Simple',
PL_FILES => {},
PREREQ_PM =>
{
Getopt::Long => 0,
Test::More => 0,
Test::Pod => 0,
},
VERSION_FROM => 'lib/Getopt/Simple.pm'
);
|