initial commit
[urisagit/Sort-Maker.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3 # the contents of the Makefile that is written.
4 WriteMakefile(
5     'NAME'             => 'Sort',
6     'DISTNAME'         => 'Sort-Maker',
7     'VERSION_FROM'      => 'Sort/Maker.pm', # finds $VERSION
8     'PREREQ_PM'         => {}, # e.g., Module::Name => 1.1
9     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
10       (ABSTRACT_FROM => 'Sort/Maker.pm', # retrieve abstract from module
11        AUTHOR     => 'Uri Guttman <uri@cpan.org>') : ()),
12 );